Move wallpapers folders and parts users home configurations

This commit is contained in:
Laurent Gueret
2026-01-25 15:32:22 +01:00
parent 79f552f586
commit 5f4f699077
11 changed files with 41 additions and 5 deletions
+1 -3
View File
@@ -1,11 +1,9 @@
{ inputs, ... }: { inputs, ... }:
{ {
imports = [ ./parts/users.nix ];
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.overwriteBackup = true; home-manager.overwriteBackup = true;
home-manager.backupFileExtension = "bak"; home-manager.backupFileExtension = "bak";
home-manager.extraSpecialArgs = { inherit inputs; }; home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.sharedModules = [
./home.nix
];
} }
+2 -2
View File
@@ -49,8 +49,8 @@ with lib.hm.gvariant;
"org/gnome/desktop/background" = { "org/gnome/desktop/background" = {
picture-options = "zoom"; picture-options = "zoom";
picture-uri = "file://" + ../wallpapers/mocha.svg; picture-uri = "file://" + ./wallpapers/mocha.svg;
picture-uri-dark = "file://" + ../wallpapers/mocha.svg; picture-uri-dark = "file://" + ./wallpapers/mocha.svg;
}; };
"org/gnome/shell/extensions/dash-to-panel" = { "org/gnome/shell/extensions/dash-to-panel" = {

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 99 KiB

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 99 KiB

+5
View File
@@ -0,0 +1,5 @@
{ inputs, ... }:
{
home-manager.users.alistreaza = import ./home.nix;
}
+33
View File
@@ -0,0 +1,33 @@
# 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, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "uas" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/6c7250d7-8a40-4b12-94de-276c4b325473";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/2620-29F6";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/7c10a8e6-c396-457e-a66f-577bd217b2e3"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}