Gen 396: updated flake and input files to use a username special arg instead of hardcoding my username

This commit is contained in:
pagedMov
2024-10-11 23:51:59 -04:00
parent a31cbe4d7e
commit f8d099d40b
8 changed files with 24 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
{ inputs, nixpkgs, self, ... }:
{ inputs, nixpkgs, self, username, ... }:
{
imports =

View File

@@ -1,12 +1,10 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ config, lib, modulesPath, username, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "uas" "sd_mod" ];
boot.initrd.kernelModules = [ ];
@@ -29,7 +27,7 @@
fsType = "ext4";
};
fileSystems."/home/pagedmov/steamlib" =
fileSystems."/home/${username}/steamlib" =
{ device = "/dev/nvme0n1p1";
fsType = "ext4";
};

View File

@@ -1,4 +1,4 @@
{ inputs, pkgs, ... }:
{ inputs, pkgs, username, ... }:
{
imports = [ inputs.home-manager.nixosModules.home-manager ];
@@ -6,13 +6,13 @@
useUserPackages = true;
useGlobalPkgs = true;
backupFileExtension = "backup";
extraSpecialArgs = { inherit inputs; };
users.pagedmov = {
extraSpecialArgs = { inherit inputs username; };
users.${username} = {
programs.home-manager.enable = true;
imports = [ ./../home ];
home = {
username = "pagedmov";
homeDirectory = "/home/pagedmov";
username = "${username}";
homeDirectory = "/home/${username}";
stateVersion = "24.05";
pointerCursor = {
name = "Quintom_Ink";
@@ -22,13 +22,13 @@
};
};
};
users.users.pagedmov = {
users.users.${username} = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [ "wheel" ];
};
security.sudo.extraConfig = ''
pagedmov ALL=(ALL) NOPASSWD: /run/current-system/sw/bin/nixos-rebuild
${username} ALL=(ALL) NOPASSWD: /run/current-system/sw/bin/nixos-rebuild
'';
nix.settings.allowed-users = [ "pagedmov" ];
nix.settings.allowed-users = [ "${username}" ];
}