diff options
| -rw-r--r-- | nixos.org | 18 | 
1 files changed, 10 insertions, 8 deletions
| @@ -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 | 
