This commit is contained in:
2024-03-23 09:32:43 +01:00
10 changed files with 37 additions and 21 deletions

View File

@@ -96,6 +96,7 @@
"$mod,ESCAPE, exec, nwg-bar"
"$mod, C, killactive"
"$mod SHIFT, C, exec, hyprctl kill"
"$mod, V, togglefloating"
"$mod, F, fullscreen, 0"
"$mod, M, fullscreen, 1"

View File

@@ -12,5 +12,8 @@
bitwarden
pavucontrol
unstable.youtube-music
# CLI tools
cloc
];
}

View File

@@ -2,7 +2,7 @@
{
nix.settings = {
substituters = ["https://getchoo.cachix.org"];
trusted-substituters = ["https://getchoo.cachix.org"];
trusted-public-keys = ["getchoo.cachix.org-1:ftdbAUJVNaFonM0obRGgR5+nUmdLMM+AOvDOSx0z5tE="];
};

View File

@@ -12,4 +12,6 @@
hardware.opengl.extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
programs.gamemode.enable = true;
}

View File

@@ -36,4 +36,6 @@
package = config.boot.kernelPackages.nvidiaPackages.stable;
};
programs.gamemode.enable = true;
}

View File

@@ -0,0 +1,7 @@
{ ... }:
{
virtualisation.docker.enable = true;
users.users.xeovalyte.extraGroups = [ "docker" ];
}