Formatted

This commit is contained in:
willifan 2025-01-05 00:48:46 +01:00
parent d73191e526
commit fbfa70195b
63 changed files with 906 additions and 899 deletions

View file

@ -59,7 +59,8 @@
{ {
nixosConfigurations = { nixosConfigurations = {
Lenni = let Lenni =
let
system = "x86_64-linux"; system = "x86_64-linux";
in in
lib.nixosSystem { lib.nixosSystem {
@ -88,7 +89,8 @@
}; };
Puenktchen = let Puenktchen =
let
system = "x86_64-linux"; system = "x86_64-linux";
in in
lib.nixosSystem { lib.nixosSystem {
@ -119,7 +121,8 @@
}; };
Anton = let Anton =
let
system = "x86_64-linux"; system = "x86_64-linux";
in in
lib.nixosSystem { lib.nixosSystem {
@ -150,7 +153,8 @@
}; };
Lillie = let Lillie =
let
system = "x86_64-linux"; system = "x86_64-linux";
in in
lib.nixosSystem { lib.nixosSystem {

View file

@ -5,7 +5,8 @@
{ {
imports = imports =
[ (modulesPath + "/installer/scan/not-detected.nix") [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" ];

View file

@ -5,7 +5,8 @@
{ {
imports = imports =
[ (modulesPath + "/installer/scan/not-detected.nix") [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
@ -14,7 +15,8 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/e09e7d80-9d85-49e6-8b0e-1f31aea83840"; {
device = "/dev/disk/by-uuid/e09e7d80-9d85-49e6-8b0e-1f31aea83840";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@" ]; options = [ "subvol=@" ];
}; };
@ -22,7 +24,8 @@
boot.initrd.luks.devices."luks-a2f76baf-2f27-42a4-ae48-1963c566a9ab".device = "/dev/disk/by-uuid/a2f76baf-2f27-42a4-ae48-1963c566a9ab"; boot.initrd.luks.devices."luks-a2f76baf-2f27-42a4-ae48-1963c566a9ab".device = "/dev/disk/by-uuid/a2f76baf-2f27-42a4-ae48-1963c566a9ab";
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/2A99-D7CC"; {
device = "/dev/disk/by-uuid/2A99-D7CC";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ]; options = [ "fmask=0022" "dmask=0022" ];
}; };

View file

@ -5,7 +5,8 @@
{ {
imports = imports =
[ (modulesPath + "/installer/scan/not-detected.nix") [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];

View file

@ -5,7 +5,8 @@
{ {
imports = imports =
[ (modulesPath + "/installer/scan/not-detected.nix") [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];

View file

@ -6,11 +6,13 @@ lib.mkIf config.desktop.enable {
]; ];
services.autofs = { services.autofs = {
enable = true; enable = true;
autoMaster = let autoMaster =
let
mapConf = pkgs.writeText "auto.nfs" '' mapConf = pkgs.writeText "auto.nfs" ''
roms -fstype=nfs4 192.168.178.19:/roms roms -fstype=nfs4 192.168.178.19:/roms
''; '';
in '' in
''
/mnt/nfs ${mapConf} /mnt/nfs ${mapConf}
''; '';
}; };

View file

@ -1,3 +1,2 @@
{ ... }: { ... }:
{ { }
}

View file

@ -1,5 +1,2 @@
{ lib, ... }: { lib, ... }:
{ { }
}

View file

@ -1,3 +1,2 @@
{ ... }: { ... }:
{ { }
}

View file

@ -1,6 +1,6 @@
{ { appimageTools
appimageTools, , fetchurl
fetchurl, ,
}: }:
let let
pname = "UVtools"; pname = "UVtools";

View file

@ -1,6 +1,6 @@
{ { appimageTools
appimageTools, , fetchurl
fetchurl, ,
}: }:
let let
pname = "yuzu"; pname = "yuzu";