nixcfg/hosts/fallarbor/default.nix

70 lines
1.5 KiB
Nix
Raw Normal View History

# Framework 13 with 11th gen Intel Core i5, 16GB RAM, 512GB SSD.
{
config,
lib,
self,
...
}: {
imports = [
./disko.nix
./home.nix
2024-07-22 19:56:56 -04:00
./secrets.nix
./stylix.nix
self.inputs.nixhw.nixosModules.framework-13-intel-11th
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-wifi-profiles
];
boot.loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
2024-09-23 20:18:49 -04:00
environment.variables.GDK_SCALE = "1.5";
networking.hostName = "fallarbor";
system.stateVersion = "24.05";
ar = {
2024-06-28 21:07:20 -04:00
apps = {
firefox.enable = true;
steam.enable = true;
};
desktop = {
greetd = {
enable = true;
session = lib.getExe config.programs.sway.package;
};
2024-07-27 19:34:38 -04:00
sway.enable = true;
};
laptopMode = true;
services.flatpak.enable = true;
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";
syncthing = {
enable = true;
certFile = config.age.secrets.syncthingCert.path;
keyFile = config.age.secrets.syncthingKey.path;
syncMusic = false;
};
2024-04-26 22:55:43 -04:00
};
2024-04-26 22:55:43 -04:00
dustin = {
enable = true;
password = "$y$j9T$OXQYhj4IWjRJWWYsSwcqf.$lCcdq9S7m0EAdej9KMHWj9flH8K2pUb2gitNhLTlLG/";
};
};
};
}