nixos-config/hosts/desktop/home.nix

62 lines
1.4 KiB
Nix
Raw Normal View History

2022-11-05 10:25:12 +01:00
#
# Home-manager configuration for laptop
#
# flake.nix
# ├─ ./hosts
# │ └─ ./laptop
# │ └─ home.nix *
# └─ ./modules
# └─ ./desktop
# └─ ./hyprland
# └─ hyprland.nix
#
{ pkgs, ... }:
{
imports =
[
#../../modules/desktop/hyprland/home.nix # Window Manager
../../modules/desktop/sway/home.nix # Window Manager
../../modules/home.nix # Window Manager
];
home = { # Specific packages for laptop
packages = with pkgs; [
# Applications
2023-10-28 11:37:56 +02:00
#freecad # Office packages
2022-11-05 10:25:12 +01:00
#firefox
chromium
thunderbird
streamlink
streamlink-twitch-gui-bin
element-desktop
2022-12-28 16:08:10 +01:00
nheko
2022-11-05 10:25:12 +01:00
pulsemixer
#yubioath-flutter
nitrokey-app
2023-12-19 16:03:43 +01:00
kicad
2024-03-06 22:52:28 +01:00
yuzu-mainline
2022-11-05 10:25:12 +01:00
# Display
#light # xorg.xbacklight not supported. Other option is just use xrandr.
# Power Management
#auto-cpufreq # Power management
#tlp # Power management
];
};
programs = {
alacritty.settings.font.size = 11;
};
services = { # Applets
blueman-applet.enable = true; # Bluetooth
network-manager-applet.enable = true; # Network
};
xsession.preferStatusNotifierItems = true;
}