flake: switch home-manager-based maui to lix too

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2024-06-18 11:19:36 +02:00
parent dab449bea4
commit 6e88af9c8a
Signed by: c8h4
GPG key ID: 1538094429952F86
2 changed files with 2 additions and 2 deletions

View file

@ -218,7 +218,7 @@
overlays = overlays ++ [ nixgl.overlay ];
};
modules = [ ./machines/maui.nix ];
modules = [ ./machines/maui.nix lix-module.nixosModules.default ];
};
nixosConfigurations = builtins.mapAttrs mkSystem machines;

View file

@ -10,7 +10,7 @@
home = rec {
username = "cheiss";
homeDirectory = "/home/${username}";
packages = (with pkgs; [ rust-analyzer samply sipcalc swaks ])
packages = (with pkgs; [ rust-analyzer samply sipcalc swaks lix ])
++ (with pkgs.nodePackages; [ bash-language-server prettier ])
++ (with pkgs.nixgl; [ nixGLIntel nixVulkanIntel ]);
sessionVariables.NIX_PATH = "nixpkgs=${lib.cleanSource pkgs.path}";