Compare commits

...

2 Commits

Author SHA1 Message Date
2mal3 54902357b0 fix(nixos): could not send keyboard 2025-11-28 16:34:09 +01:00
2mal3 88b80fab58 fix(nixos): flake not renamed to just mudics 2025-11-28 16:29:50 +01:00
2 changed files with 10 additions and 8 deletions
+2
View File
@@ -12,6 +12,8 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
hardware.steam-hardware.enable = true;
networking.networkmanager.enable = true;
nix.settings.experimental-features = ["nix-command" "flakes"];
+8 -8
View File
@@ -8,14 +8,14 @@
nixpkgs,
...
} @ inputs: {
nixosConfigurations.plg-mudics = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
};
modules = [
./configuration.nix
];
nixosConfigurations.mudics = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
};
modules = [
./configuration.nix
];
};
};
}