nixcfg/hosts/lavaridge/default.nix

58 lines
1.2 KiB
Nix
Raw 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,
lib,
pkgs,
self,
2024-04-07 22:16:33 -04:00
...
}: {
2024-03-24 14:06:24 -04:00
imports = [
2024-07-07 19:17:35 -04:00
../common.nix
2024-05-01 22:12:13 -04:00
./disko.nix
./home.nix
self.inputs.nixhw.nixosModules.framework-13-amd-7000
2024-03-24 14:06:24 -04:00
];
age.secrets = {
syncthingCert.file = ../../secrets/syncthing/lavaridge/cert.age;
syncthingKey.file = ../../secrets/syncthing/lavaridge/key.age;
};
boot.loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
2024-03-12 22:17:57 -04:00
2024-07-07 22:23:19 -04:00
environment.variables.GDK_SCALE = "1.5";
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 = {
2024-04-29 18:47:07 -04:00
greetd = {
enable = true;
autologin = "aly";
2024-04-29 18:47:07 -04:00
};
2024-05-26 02:30:20 -04:00
hyprland.enable = 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;
};
};
};
}