🧹 Refactor, moved monitornames to common.nix, removed waypaper reload

This commit is contained in:
2025-02-02 18:33:09 +01:00
parent 76ebdad3ce
commit 830b76bcb6
8 changed files with 18 additions and 11 deletions

View File

@ -37,6 +37,7 @@
}:
let
system = "x86_64-linux";
hostname = "nixos";
inherit (self) outputs;
common = import ./common.nix;
in
@ -46,7 +47,7 @@
# Adds the nix fmt command to format nix files
formatter.${system} = nixpkgs.legacyPackages.${system}.nixfmt-rfc-style;
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
nixosConfigurations.${hostname} = nixpkgs.lib.nixosSystem {
system = system;
specialArgs = { inherit outputs inputs; }; # Pass args to modules
modules = [