diff options
| author | Skullheadx <admonty1@protonmail.com> | 2026-04-26 00:35:00 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2026-04-26 00:35:56 -0400 |
| commit | 4b511d25f6ab99c1279e6aa003b44295636b5c7a (patch) | |
| tree | a55875c3ecaf40be05112a53d77a10c1f2fef19e /configuration.nix | |
| parent | modularize x11 config (diff) | |
| download | nixos-4b511d25f6ab99c1279e6aa003b44295636b5c7a.tar.gz nixos-4b511d25f6ab99c1279e6aa003b44295636b5c7a.tar.bz2 nixos-4b511d25f6ab99c1279e6aa003b44295636b5c7a.zip | |
modularize hjem
Diffstat (limited to '')
| -rw-r--r-- | configuration.nix | 51 |
1 files changed, 1 insertions, 50 deletions
diff --git a/configuration.nix b/configuration.nix index e8270dd..f9a27cf 100644 --- a/configuration.nix +++ b/configuration.nix @@ -4,6 +4,7 @@ ./hardware-configuration.nix ./lockscreen.nix ./x11.nix +./hjem.nix ]; # Bootloader. @@ -25,56 +26,6 @@ i18n.defaultLocale = "en_CA.UTF-8"; - # Define a user account. Don't forget to set a password with ‘passwd’. - users.users.andrew = { - isNormalUser = true; - - extraGroups = [ - "networkmanager" - "wheel" - ]; - packages = with pkgs; [ ]; - }; - - hjem.users.andrew = { - directory = "/home/andrew"; - files = { - - ".config/sxhkd/sxhkdrc".text = '' -super + space - ${pkgs.dmenu}/bin/dmenu_run - -super + Return - ${pkgs.st}/bin/st - -super + b - ${pkgs.librewolf}/bin/librewolf - -XF86AudioRaiseVolume - ${pkgs.pamixer}/bin/pamixer -i 5 - -XF86AudioLowerVolume - ${pkgs.pamixer}/bin/pamixer -d 5 - -XF86AudioMute - ${pkgs.pamixer}/bin/pamixer -t - -super + s - ${pkgs.maim}/bin/maim -i $(${pkgs.xdotool}/bin/xdotool getactivewindow) | ${pkgs.xclip}/bin/xclip -selection clipboard -t image/png - -super + shift + s - ${pkgs.maim}/bin/maim -s | ${pkgs.xclip}/bin/xclip -selection clipboard -t image/png - -super + l - ${pkgs.lock-screen}/bin/lock-screen - - ''; - }; - packages = with pkgs; [ - discord - ]; - }; - # Allow unfree packages nixpkgs.config.allowUnfree = true; nix.settings.experimental-features = [ |
