nixcfg/hosts/lavaridge/default.nix

70 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2024-03-12 22:14:08 -04:00
# Framework Laptop 13 with AMD Ryzen 7640U, 32GB RAM, 1TB SSD.
{
2024-04-07 22:16:33 -04:00
config,
2024-08-14 12:57:09 -04:00
lib,
self,
2024-04-07 22:16:33 -04:00
...
}: {
2024-03-24 14:06:24 -04:00
imports = [
./home.nix
2024-07-22 19:56:56 -04:00
./secrets.nix
./stylix.nix
2024-09-23 23:59:07 -04:00
(import ./../../disko/luks-btrfs-subvolumes.nix {disks = ["/dev/nvme0n1"];})
self.nixosModules.common-auto-upgrade
self.nixosModules.common-base
2024-08-22 09:09:30 -04:00
self.nixosModules.common-locale
self.nixosModules.common-mauville-share
self.nixosModules.common-nix
self.nixosModules.common-overlays
self.nixosModules.common-pkgs
self.nixosModules.common-tailscale
self.nixosModules.common-wifi-profiles
self.nixosModules.hw-framework-13-amd-7000
2024-03-24 14:06:24 -04:00
];
2024-08-14 12:57:09 -04:00
boot = {
initrd.systemd.enable = true;
2024-08-14 12:57:09 -04:00
lanzaboote = {
enable = true;
pkiBundle = "/etc/secureboot";
};
2024-08-14 12:57:09 -04:00
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = lib.mkForce false;
2024-08-14 12:57:09 -04:00
};
};
2024-03-12 22:17:57 -04:00
2024-09-08 15:59:35 -04:00
environment.variables.GDK_SCALE = "2";
networking.hostName = "lavaridge";
system.stateVersion = "24.05";
ar = {
apps = {
2024-06-28 21:07:20 -04:00
firefox.enable = true;
podman.enable = true;
2024-06-28 21:07:20 -04:00
steam.enable = true;
virt-manager.enable = true;
};
desktop = {
greetd.enable = true;
2024-05-26 02:30:20 -04:00
hyprland.enable = true;
2024-07-25 21:03:26 -04:00
sway.enable = true;
};
laptopMode = true;
users.aly = {
enable = true;
password = "$y$j9T$NSS7QcEtN4yiigPyofwlI/$nxdgz0lpySa0heDMjGlHe1gX3BWf48jK6Tkfg4xMEs6";
syncthing = {
enable = true;
certFile = config.age.secrets.syncthingCert.path;
keyFile = config.age.secrets.syncthingKey.path;
};
};
};
}