Compare commits
No commits in common. "25ca3bb7cca4c79a28faa356b43581af98f2f73e" and "0de81c94068c6ea2bf80b92147d2910efa47ddec" have entirely different histories.
25ca3bb7cc
...
0de81c9406
3 changed files with 0 additions and 35 deletions
|
|
@ -9,7 +9,6 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enabke support for the Xbox One wireless dongle
|
# Enabke support for the Xbox One wireless dongle
|
||||||
# Enable support for the Xbox One wireless dongle
|
|
||||||
hardware.xone.enable = true;
|
hardware.xone.enable = true;
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||||||
|
|
@ -40,19 +39,6 @@
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
Mount the root subvolume of the SSD
|
|
||||||
This is helpful for getting things from
|
|
||||||
my old Arch install, as well as for running btdu
|
|
||||||
*/
|
|
||||||
fileSystems = {
|
|
||||||
"/mnt/ssd" = {
|
|
||||||
device = config.fileSystems."/".device;
|
|
||||||
fsType = config.fileSystems."/".fsType;
|
|
||||||
options = [ "subvolid=5" "ro" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,5 @@
|
||||||
imports = [
|
imports = [
|
||||||
./discord.nix
|
./discord.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./keepassxc.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
# I'm only using keepass on my user, so I'm installing it with home-manager
|
|
||||||
home-manager = {
|
|
||||||
/*
|
|
||||||
TODO: move home-manager settings into the common role
|
|
||||||
They are not keepass specific, so they really should
|
|
||||||
not be here. I'm too lazy to do it now tho :P
|
|
||||||
*/
|
|
||||||
backupFileExtension = "backup";
|
|
||||||
useGlobalPkgs = true;
|
|
||||||
users.toast = { config, pkgs, ... }: {
|
|
||||||
home = {
|
|
||||||
stateVersion = "23.05";
|
|
||||||
packages = [ pkgs.keepassxc ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue