added desktop system preset
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
}: {
|
||||
flake.nixosConfigurations.HACKSTATION = inputs.nixpkgs.lib.nixosSystem {
|
||||
modules = with self.nixosModules; [
|
||||
core
|
||||
desktop
|
||||
hackstationConfiguration
|
||||
];
|
||||
};
|
||||
|
||||
19
modules/system/desktop/default.nix
Normal file
19
modules/system/desktop/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
self,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
flake.nixosModules.desktop = {
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
modules = with self.nixosModules; [
|
||||
core
|
||||
hyprland
|
||||
sddm
|
||||
];
|
||||
in {
|
||||
imports = modules;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user