Compare commits
5 commits
ea76bf90d1
...
53d61c4f01
Author | SHA1 | Date | |
---|---|---|---|
53d61c4f01 | |||
f3753f174f | |||
fe0f98b3f0 | |||
d9501b19ad | |||
d2f6c0eb26 |
5 changed files with 33 additions and 4 deletions
|
@ -16,5 +16,10 @@
|
|||
};
|
||||
boot.initrd.systemd.enable = true;
|
||||
|
||||
security.pam.services = {
|
||||
login.u2fAuth = true;
|
||||
sudo.u2fAuth = true;
|
||||
};
|
||||
|
||||
programs.adb.enable = true;
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
kdePackages.akonadi-import-wizard
|
||||
kdePackages.akonadiconsole
|
||||
kdePackages.akonadi
|
||||
rtl-sdr
|
||||
];
|
||||
services.kdeconnect = {
|
||||
enable = true;
|
||||
|
|
|
@ -17,4 +17,14 @@
|
|||
keys.normal."C-`" = "switch_to_uppercase";
|
||||
};
|
||||
};
|
||||
|
||||
programs.zoxide = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
|
||||
programs.fzf = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -41,4 +41,7 @@
|
|||
defaultCacheTtl = 31536000;
|
||||
maxCacheTtl = 31536000;
|
||||
};
|
||||
|
||||
services.ssh-agent.enable = true;
|
||||
programs.ssh.forwardAgent = true;
|
||||
}
|
||||
|
|
|
@ -10,10 +10,12 @@
|
|||
./hardware-config.nix
|
||||
];
|
||||
|
||||
boot.initrd.luks.devices.root = {
|
||||
device = "/dev/disk/by-uuid/00f32b39-dfcb-4459-bf8e-aa68e2198466";
|
||||
preLVM = true;
|
||||
allowDiscards = true;
|
||||
boot.initrd.luks = {
|
||||
devices.root = {
|
||||
device = "/dev/disk/by-uuid/00f32b39-dfcb-4459-bf8e-aa68e2198466";
|
||||
preLVM = true;
|
||||
allowDiscards = true;
|
||||
};
|
||||
};
|
||||
|
||||
networking.hostName = "alex";
|
||||
|
@ -30,6 +32,12 @@
|
|||
pulse.enable = true;
|
||||
};
|
||||
|
||||
security.pam.services = {
|
||||
kde.u2fAuth = true;
|
||||
sddm.u2fAuth = true;
|
||||
doas.u2fAuth = true;
|
||||
};
|
||||
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
# displayManager.gdm.enable = true;
|
||||
|
@ -65,6 +73,8 @@
|
|||
};
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.rtl-sdr.enable = true;
|
||||
users.users.ash.extraGroups = ["plugdev"];
|
||||
|
||||
programs.steam.enable = true;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
|
Loading…
Reference in a new issue