2024-04-18 14:21:33 -04:00
|
|
|
# Framework 13 with 11th gen Intel Core i5, 16GB RAM, 512GB SSD.
|
|
|
|
{
|
|
|
|
config,
|
2024-07-09 19:17:53 -04:00
|
|
|
self,
|
2024-04-18 14:21:33 -04:00
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
2024-07-16 16:53:28 -04:00
|
|
|
../common
|
2024-04-18 14:21:33 -04:00
|
|
|
./disko.nix
|
|
|
|
./home.nix
|
2024-07-09 19:17:53 -04:00
|
|
|
self.inputs.nixhw.nixosModules.framework-13-intel-11th
|
2024-04-18 14:21:33 -04:00
|
|
|
];
|
|
|
|
|
2024-07-08 01:29:09 -04:00
|
|
|
age.secrets = {
|
|
|
|
syncthingCert.file = ../../secrets/syncthing/fallarbor/cert.age;
|
|
|
|
syncthingKey.file = ../../secrets/syncthing/fallarbor/key.age;
|
|
|
|
};
|
|
|
|
|
2024-06-22 12:10:36 -04:00
|
|
|
boot.loader = {
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
systemd-boot.enable = true;
|
2024-04-18 14:21:33 -04:00
|
|
|
};
|
|
|
|
|
2024-07-07 22:23:19 -04:00
|
|
|
environment.variables.GDK_SCALE = "1.5";
|
2024-06-22 12:10:36 -04:00
|
|
|
networking.hostName = "fallarbor";
|
|
|
|
system.stateVersion = "24.05";
|
2024-04-18 14:21:33 -04:00
|
|
|
|
2024-06-26 22:13:02 -04:00
|
|
|
ar = {
|
2024-06-28 21:07:20 -04:00
|
|
|
apps = {
|
|
|
|
firefox.enable = true;
|
|
|
|
steam.enable = true;
|
|
|
|
};
|
|
|
|
|
2024-06-22 12:10:36 -04:00
|
|
|
desktop = {
|
|
|
|
greetd.enable = true;
|
|
|
|
hyprland.enable = true;
|
|
|
|
};
|
|
|
|
|
2024-07-08 00:58:52 -04:00
|
|
|
services.flatpak.enable = true;
|
2024-06-22 12:10:36 -04:00
|
|
|
|
2024-06-11 16:24:12 -04:00
|
|
|
users = {
|
2024-04-26 22:55:43 -04:00
|
|
|
aly = {
|
2024-04-28 13:52:02 -04:00
|
|
|
enable = true;
|
2024-05-12 14:31:17 -04:00
|
|
|
password = "$y$j9T$0p6rc4p5sn0LJ/6XyAGP7.$.wmTafwMMscdW1o8kqqoHJP7U8kF.4WBmzzcPYielR3";
|
2024-07-08 00:58:52 -04:00
|
|
|
|
|
|
|
syncthing = {
|
|
|
|
enable = true;
|
2024-07-08 01:29:09 -04:00
|
|
|
certFile = config.age.secrets.syncthingCert.path;
|
|
|
|
keyFile = config.age.secrets.syncthingKey.path;
|
2024-07-08 00:58:52 -04:00
|
|
|
syncMusic = false;
|
|
|
|
};
|
2024-04-26 22:55:43 -04:00
|
|
|
};
|
2024-06-22 12:10:36 -04:00
|
|
|
|
2024-04-26 22:55:43 -04:00
|
|
|
dustin = {
|
|
|
|
enable = true;
|
|
|
|
password = "$y$j9T$OXQYhj4IWjRJWWYsSwcqf.$lCcdq9S7m0EAdej9KMHWj9flH8K2pUb2gitNhLTlLG/";
|
|
|
|
};
|
2024-04-18 14:21:33 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|