commit 7dd382cbb5f90d30cf145c50ffa3866ead804ea5
parent efb70ecc1f3c45cdc9f903481020b293fd6154cc
Author: Crazazy <crazazy@tilde.cafe>
Date: Mon, 31 Jan 2022 12:56:35 +0100
various fixes
Couldn't split them apart, but I forgot some curly braces and also the
steam config is in the modules attrset
Diffstat:
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git 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