diff options
Diffstat (limited to 'machines/x/configuration.nix')
| -rw-r--r-- | machines/x/configuration.nix | 11 | 
1 files changed, 9 insertions, 2 deletions
| diff --git a/machines/x/configuration.nix b/machines/x/configuration.nix index 933239f..bd0a385 100644 --- a/machines/x/configuration.nix +++ b/machines/x/configuration.nix @@ -1,13 +1,15 @@  { lib, inputs, pkgs, ... }: -{ +let +  tlauncher = (pkgs.callPackage ../../packages/tlauncher.nix {}); +in {    imports = [      ./hardware-configuration.nix      inputs.home-manager.nixosModules.default    ] ++ (map (path: ../../modules/${path}) [      "global.nix"      "compromyse.nix" -    "desktop.nix" +    "plasma.nix"      "login.nix"      "fonts.nix"      "bluetooth.nix" @@ -33,5 +35,10 @@    networking.hostName = "x"; +  environment.systemPackages = [tlauncher]; + +  virtualisation.lxd.enable = true; +    home-manager.users.compromyse = import ./home.nix; +  programs.steam.enable = true;  } | 
