mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
Compare commits
2 commits
d11443ce4d
...
a62f7dbaa6
Author | SHA1 | Date | |
---|---|---|---|
a62f7dbaa6 | |||
edd3a5cbbc |
2 changed files with 58 additions and 27 deletions
|
@ -572,7 +572,7 @@ binds {
|
|||
// wayland support
|
||||
spawn-at-startup "xwayland-satellite"
|
||||
spawn-at-startup "swww-daemon"
|
||||
spawn-at-startup "bash" "~/config/niri/background.sh" "~/config/niri/wallpapers"
|
||||
spawn-at-startup "bash" "~/.config/niri/background.sh" "~/.config/niri/wallpapers"
|
||||
|
||||
environment {
|
||||
DISPLAY ":0"
|
||||
|
|
|
@ -1,40 +1,71 @@
|
|||
# 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,
|
||||
pkgs,
|
||||
modulesPath,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
|
||||
boot.initrd.availableKernelModules = [
|
||||
"xhci_pci"
|
||||
"ahci"
|
||||
"usb_storage"
|
||||
"usbhid"
|
||||
"sd_mod"
|
||||
"sr_mod"
|
||||
];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" "wl" ];
|
||||
boot.kernelModules = [
|
||||
"kvm-intel"
|
||||
"wl"
|
||||
];
|
||||
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/4efbf111-4cbb-4e1e-b3ee-dc3fca1f6f4a";
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/4efbf111-4cbb-4e1e-b3ee-dc3fca1f6f4a";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=root" ];
|
||||
};
|
||||
|
||||
fileSystems."/home" =
|
||||
{ device = "/dev/disk/by-uuid/4efbf111-4cbb-4e1e-b3ee-dc3fca1f6f4a";
|
||||
fileSystems."/home" = {
|
||||
device = "/dev/disk/by-uuid/4efbf111-4cbb-4e1e-b3ee-dc3fca1f6f4a";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=home" ];
|
||||
};
|
||||
|
||||
fileSystems."/nix" =
|
||||
{ device = "/dev/disk/by-uuid/4efbf111-4cbb-4e1e-b3ee-dc3fca1f6f4a";
|
||||
fileSystems."/home/misschloe777/Musique" = {
|
||||
device = "/dev/disk/by-uuid/e5f0b36f-c2b4-4f2e-8179-dd13aaa35798";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=Musique" ];
|
||||
};
|
||||
|
||||
fileSystems."/home/misschloe777/Jeux" = {
|
||||
device = "/dev/disk/by-uuid/e5f0b36f-c2b4-4f2e-8179-dd13aaa35798";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=Jeux" ];
|
||||
};
|
||||
|
||||
fileSystems."/nix" = {
|
||||
device = "/dev/disk/by-uuid/4efbf111-4cbb-4e1e-b3ee-dc3fca1f6f4a";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=nix" ];
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/E021-ADA0";
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/E021-ADA0";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0022" "dmask=0022" ];
|
||||
options = [
|
||||
"fmask=0022"
|
||||
"dmask=0022"
|
||||
];
|
||||
};
|
||||
|
||||
swapDevices = [ ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue