Add more Detritus
This commit is contained in:
parent
ca2d6e4091
commit
b7c5651306
10 changed files with 21 additions and 17 deletions
|
@ -3,10 +3,9 @@
|
|||
boot = {
|
||||
kernelPackages = pkgs.linuxPackages_latest;
|
||||
kernelParams = [
|
||||
"amdgpu.cik_support=1"
|
||||
"radeon.cik_support=0"
|
||||
"amdgpu.si_support=1"
|
||||
"radeon.si_support=0"
|
||||
];
|
||||
loader.grub.enable = true;
|
||||
plymouth.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -15,4 +15,6 @@
|
|||
desktop.enable = true;
|
||||
stateVersion = "24.11";
|
||||
};
|
||||
|
||||
services.xserver.videoDrivers = [ "amdgpu" ];
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
disk = {
|
||||
"${config.networking.hostName}" = {
|
||||
type = "disk";
|
||||
device = "/dev/nvme0n1";
|
||||
device = "/dev/sda";
|
||||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
|
|
|
@ -7,9 +7,10 @@
|
|||
availableKernelModules = [
|
||||
"ahci"
|
||||
"ehci_pci"
|
||||
"firewire_ohci"
|
||||
"sd_mod"
|
||||
"xhci_pci"
|
||||
"usb_storage"
|
||||
"usbhid"
|
||||
"xhci_pci_renesas"
|
||||
];
|
||||
kernelModules = [ "dm-snapshot" ];
|
||||
};
|
||||
|
|
1
hosts/detritus/id_ed25519.pub
Normal file
1
hosts/detritus/id_ed25519.pub
Normal file
|
@ -0,0 +1 @@
|
|||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBQE+a1E88+ELJ5cDOMPlc9lnV1ysVndchgJ4MxCjeWd
|
|
@ -1,7 +1,11 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
home-manager.users."${config.sysusers.main}".home = {
|
||||
guifull.enable = true;
|
||||
stateVersion = lib.mkForce config.system.stateVersion;
|
||||
home-manager.users."${config.sysusers.main}" = {
|
||||
home = {
|
||||
guifull.enable = true;
|
||||
stateVersion = lib.mkForce config.system.stateVersion;
|
||||
};
|
||||
|
||||
wayland.windowManager.sway.extraSessionCommands = lib.mkForce "export ELECTRON_OZONE_PLATFORM_HINT=wayland";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue