Lint files

This commit is contained in:
Michael Smith 2024-09-12 14:34:13 +02:00
parent 92f089266c
commit 42cc35268a
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@
plymouth = { plymouth = {
enable = true; enable = true;
theme = "desk-os"; theme = "desk-os";
themePackages = [ (pkgs.callPackage ../../packages/desk-os-plymouth {}) ]; themePackages = [(pkgs.callPackage ../../packages/desk-os-plymouth {})];
}; };
}; };

View File

@ -39,7 +39,7 @@ in {
system.nixos.distroName = "deskOS 1"; system.nixos.distroName = "deskOS 1";
# FIXME(m): Disable squashfs compression during development # FIXME(m): Disable squashfs compression during development
# isoImage.squashfsCompression = null; isoImage.squashfsCompression = null;
boot = { boot = {
consoleLogLevel = 0; consoleLogLevel = 0;
@ -50,7 +50,7 @@ in {
plymouth = { plymouth = {
enable = true; enable = true;
theme = "desk-os"; theme = "desk-os";
themePackages = [ (pkgs.callPackage ../../packages/desk-os-plymouth {}) ]; themePackages = [(pkgs.callPackage ../../packages/desk-os-plymouth {})];
}; };
# NOTE(m): Enable kernel modules that improve wifi support on # NOTE(m): Enable kernel modules that improve wifi support on
# Macbooks during installation. # Macbooks during installation.