diff options
author | Crazazy | 2022-01-31 12:56:35 +0100 |
---|---|---|
committer | Crazazy | 2022-02-10 16:13:34 +0100 |
commit | 7dd382cbb5f90d30cf145c50ffa3866ead804ea5 (patch) | |
tree | 22ae62beab74b58f68450fc17857bf8966d0cb5f | |
parent | efb70ecc1f3c45cdc9f903481020b293fd6154cc (diff) |
various fixes
Couldn't split them apart, but I forgot some curly braces and also the steam config is in the modules attrset
-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 |