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 =
|
|
|
|
[
|
2024-05-19 17:57:35 +02:00
|
|
|
#../../modules/wm/hyprland/home.nix # Window Manager
|
|
|
|
../../modules/wm/sway/home.nix # Window Manager
|
2022-11-05 10:25:12 +01:00
|
|
|
../../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
|
2024-09-09 12:40:27 +02:00
|
|
|
#nheko
|
2022-11-05 10:25:12 +01:00
|
|
|
pulsemixer
|
2022-11-26 20:33:43 +01:00
|
|
|
#yubioath-flutter
|
2022-11-06 12:52:48 +01:00
|
|
|
nitrokey-app
|
2023-12-19 16:03:43 +01:00
|
|
|
kicad
|
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
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
services = { # Applets
|
|
|
|
blueman-applet.enable = true; # Bluetooth
|
|
|
|
network-manager-applet.enable = true; # Network
|
|
|
|
};
|
|
|
|
|
|
|
|
xsession.preferStatusNotifierItems = true;
|
|
|
|
|
|
|
|
}
|