Evie Litherland-Smith
05d19c1813
Split system-level sway and plasma config into separate files, move sway-specific home-level config to sway file. Only truly common desktop components are kept in common spaces. This allows much easier switching between using KDE Plasma and Sway.
24 lines
546 B
Nix
24 lines
546 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./laptop.nix
|
|
./desktop/plasma.nix
|
|
];
|
|
boot.initrd = {
|
|
secrets = {"/crypto_keyfile.bin" = null;};
|
|
luks.devices."luks-761eeb11-3091-4142-9232-4fb33165eccd" = {
|
|
device = "/dev/disk/by-uuid/761eeb11-3091-4142-9232-4fb33165eccd";
|
|
keyFile = "/crypto_keyfile.bin";
|
|
};
|
|
};
|
|
environment = {
|
|
etc."ppp/options".text = ''
|
|
ipcp-accept-remote
|
|
'';
|
|
systemPackages = with pkgs; [openfortivpn];
|
|
};
|
|
services = {
|
|
samba.enable = true;
|
|
hardware.bolt.enable = true;
|
|
};
|
|
}
|