Fix statix suggestions

This commit is contained in:
Tristan D. 2024-01-22 21:09:28 +01:00
parent e91b46fc8d
commit 92792ea0e0
Signed by: tristan
SSH key fingerprint: SHA256:3RU4RLOoM8oAjFU19f1W6t8uouZbA7GWkaSW6rjp1k8
6 changed files with 22 additions and 18 deletions

View file

@ -137,7 +137,7 @@
};
nixosConfigurations = {
nixos-he4 = nixpkgs.lib.nixosSystem {
system = system;
inherit system;
specialArgs = args;
modules =
[
@ -152,7 +152,7 @@
++ osModules;
};
nixos-pulse = nixpkgs.lib.nixosSystem {
system = system;
inherit system;
specialArgs = args;
modules =
[
@ -167,7 +167,7 @@
++ osModules;
};
nixos-desk = nixpkgs.lib.nixosSystem {
system = system;
inherit system;
specialArgs = args;
modules =
[
@ -191,7 +191,7 @@
++ osModules;
};
nixos-karl-kvm-guest = nixpkgs.lib.nixosSystem {
system = system;
inherit system;
specialArgs = args;
modules =
[

View file

@ -20,9 +20,6 @@
'';
};
security.pki.certificates = [
(lib.readFile ../../ext/internal-ca.crt)
];
home-manager.backupFileExtension = "bak";
# locale
@ -49,12 +46,17 @@
};
####################
security.rtkit.enable = true;
security = {
pki.certificates = [
(lib.readFile ../../ext/internal-ca.crt)
];
rtkit.enable = true;
security.sudo = {
sudo = {
wheelNeedsPassword = false;
execWheelOnly = true;
};
};
environment.sessionVariables = {
EDITOR = "nvim";

View file

@ -11,10 +11,12 @@
fontconfig = {
antialias = true;
defaultFonts.serif = [ "Iosevka Nerd Font Propo" ];
defaultFonts.sansSerif = [ "Iosevka Nerd Font Propo" ];
defaultFonts.monospace = [ "Iosevka Nerd Font Mono" ];
defaultFonts.emoji = [ "Noto Color Emoji" ];
defaultFonts = {
serif = [ "Iosevka Nerd Font Propo" ];
sansSerif = [ "Iosevka Nerd Font Propo" ];
monospace = [ "Iosevka Nerd Font Mono" ];
emoji = [ "Noto Color Emoji" ];
};
hinting.enable = true;
hinting.style = "slight";

View file

@ -17,7 +17,7 @@
config = {
home = {
username = username;
inherit username;
homeDirectory = "/home/${username}";
stateVersion = "23.05";

View file

@ -10,7 +10,7 @@
];
config.home = {
username = username;
inherit username;
homeDirectory = "/home/${username}";
stateVersion = "23.05";

View file

@ -14,7 +14,7 @@
];
config.home = {
username = username;
inherit username;
homeDirectory = "/home/${username}";
stateVersion = "23.05";