Compare commits

...

2 Commits

Author SHA1 Message Date
b5970664b7 steam 2025-06-21 11:16:16 +02:00
70d3975122 config alias to cd to nix-config 2025-06-21 11:04:26 +02:00
2 changed files with 10 additions and 0 deletions

View File

@ -73,6 +73,15 @@
nvidia.modesetting.enable = true; nvidia.modesetting.enable = true;
}; };
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
];
programs.steam.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
home-manager home-manager
wget wget

View File

@ -65,6 +65,7 @@
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
history.size = 100000; history.size = 100000;
shellAliases = { shellAliases = {
config = "cd ~/nix-config";
}; };
}; };