diff options
Diffstat (limited to 'nixos.org')
-rw-r--r-- | nixos.org | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/nixos.org b/nixos.org index 9303444..75339bc 100644 --- a/nixos.org +++ b/nixos.org @@ -168,20 +168,22 @@ stuff *** Core packages These are the normal packages that I use for core maintenance #+begin_src nix :noweb-ref nixos-config - environment.systemPackages = with pkgs; [ - gitFull - curl - vim - nur.repos.crazazy.seamonkey - (wine.override { wineBuild = "wineWow"; }) - ]; + { + environment.systemPackages = with pkgs; [ + gitFull + curl + vim + nur.repos.crazazy.seamonkey + (wine.override { wineBuild = "wineWow"; }) + ]; + } #+end_src *** Steam I like to play videogames sometimes, however steam also requires a little more special attention #+begin_src nix :noweb-ref nixos-config { imports = [ - nurModules.repos.crazazy.private.steam-config + nurModules.repos.crazazy.modules.private.steam-config ]; environment.systemPackages = with pkgs; [ steam |