diff options
| author | stefan <stefan@s00.xyz> | 2025-04-15 02:19:23 -0400 |
|---|---|---|
| committer | stefan <stefan@s00.xyz> | 2025-04-15 02:19:23 -0400 |
| commit | fc23a2e79eff0bcdbc7e2bce109fb7d74d996b7e (patch) | |
| tree | fe7cc19d3277b51f70a573f1404ced870aa6206b /form | |
| parent | 9c1cd212da6cc486d04ddf08e8b112e71d2ac398 (diff) | |
| download | home-fc23a2e79eff0bcdbc7e2bce109fb7d74d996b7e.tar.gz | |
form
Diffstat (limited to 'form')
| -rw-r--r-- | form/configuration.nix | 9 | ||||
| -rw-r--r-- | form/home.nix | 6 |
2 files changed, 13 insertions, 2 deletions
diff --git a/form/configuration.nix b/form/configuration.nix index 275f5a5..79e0f18 100644 --- a/form/configuration.nix +++ b/form/configuration.nix @@ -6,6 +6,7 @@ ./hardware-configuration.nix ]; + boot.kernelPackages = pkgs.linuxPackages_latest; boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.consoleMode = "max"; boot.loader.efi.canTouchEfiVariables = true; @@ -23,7 +24,7 @@ }; services.xserver.xkb.layout = "us"; - services.xserver.xkb.variant = "colemak_dh"; + services.xserver.xkb.variant = "colemak_dh,"; services.pipewire = { enable = true; @@ -43,11 +44,14 @@ users.users.stefan = { isNormalUser = true; - extraGroups = [ "wheel" "networkmanager" ]; # Enable ‘sudo’ for the user. + extraGroups = [ "wheel" "networkmanager" "gamemode" ]; # Enable ‘sudo’ for the user. packages = with pkgs; [ + unzip tree discord-ptb ungoogled-chromium + osu-lazer-bin + xfce.thunar ]; shell = pkgs.zsh; }; @@ -55,6 +59,7 @@ #programs.firefox.enable = true; programs.foot.enable = true; programs.sway.enable = true; + programs.steam.enable = true; security = { polkit.enable = true; diff --git a/form/home.nix b/form/home.nix index fe6d6ee..2dcae82 100644 --- a/form/home.nix +++ b/form/home.nix @@ -17,6 +17,7 @@ ]; }; + colors.mountain.enable = true; gpg.enable = true; pass = { @@ -35,6 +36,11 @@ terminal = "foot"; }; + i3status = { + enable = true; + wireless = true; + }; + qutebrowser = { enable = true; }; |