From a96d1f87aeae18bc2949a0185b6e4d5a78dfeaf0 Mon Sep 17 00:00:00 2001 From: Mohamed Chrayed Date: Thu, 5 Mar 2026 23:13:31 +0100 Subject: [PATCH] deck --- modules/hosts/deck/hardware.nix | 2 +- modules/hosts/deck/imports.nix | 2 +- modules/hosts/deck/nixosConfigurations.nix | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/hosts/deck/hardware.nix b/modules/hosts/deck/hardware.nix index 56a52ed..f2c59bf 100644 --- a/modules/hosts/deck/hardware.nix +++ b/modules/hosts/deck/hardware.nix @@ -1,5 +1,5 @@ { ... }: { - flake.nixosModules.computer-nadine = { system, ... }: { + flake.nixosModules.computer-deck = { system, ... }: { boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.kernelParams = [ "quiet" "splash" "boot.shell_on_fail" "loglevel=3" "rd.systemd.show_status=false" "rd.udev.log_level=3" "udev.log_priority=3" ]; nixpkgs.hostPlatform = system; diff --git a/modules/hosts/deck/imports.nix b/modules/hosts/deck/imports.nix index d054450..766f150 100644 --- a/modules/hosts/deck/imports.nix +++ b/modules/hosts/deck/imports.nix @@ -1,5 +1,5 @@ { inputs, config, ... }: { - flake.nixosModules.computer-deck = { ... }: { + flake.nixosModules.deck = { ... }: { imports = with inputs.self.nixosModules; [ apps-sys-chrome apps-sys-vesktop diff --git a/modules/hosts/deck/nixosConfigurations.nix b/modules/hosts/deck/nixosConfigurations.nix index 4cea1bf..3f226c7 100644 --- a/modules/hosts/deck/nixosConfigurations.nix +++ b/modules/hosts/deck/nixosConfigurations.nix @@ -1,6 +1,6 @@ { inputs, ... }: { - flake.nixosConfigurations."computer-deck" = inputs.self.lib.mkHost { + flake.nixosConfigurations."deck" = inputs.self.lib.mkHost { system = "x86_64-linux"; - host = "computer-deck"; + host = "deck"; }; }