1

Enable Hyprland in addition to Plasma (for now)

This commit is contained in:
2023-04-02 20:38:40 +02:00
parent 3194428a5f
commit 00311cdf1a
5 changed files with 177 additions and 12 deletions

View File

@ -20,6 +20,7 @@
nur.url = "github:nix-community/NUR";
musnix.url = "github:musnix/musnix";
devshell.url = "github:numtide/devshell";
hyprland.url = "github:hyprwm/Hyprland";
# nixvim.url = "github:pta2002/nixvim";
# plasma-manager.url = "github:pjones/plasma-manager";
@ -40,7 +41,8 @@
# It gives a name to the ... ellipses.
outputs = inputs @ {
nixpkgs,
home-manager,
# home-manager,
hyprland,
...
}:
# With let you can define local variables
@ -85,7 +87,9 @@
hostname = "nixinator";
username = "christoph";
extraModules = [];
extraModules = [
hyprland.nixosModules.default # Use system module for SDDM config
];
};
# Usage: sudo nixos-rebuild switch --flake .#nixtop
@ -95,7 +99,9 @@
hostname = "nixtop";
username = "christoph";
extraModules = [];
extraModules = [
hyprland.nixosModules.default # Use system module for SDDM config
];
};
};
};