mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 06:33:56 -05:00
58 lines
1 KiB
Nix
58 lines
1 KiB
Nix
# Framework 13 with 11th gen Intel Core i5, 16GB RAM, 512GB SSD.
|
|
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../common.nix
|
|
./disko.nix
|
|
./home.nix
|
|
inputs.nixhw.nixosModules.framework-13-intel-11th
|
|
];
|
|
|
|
boot.loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot.enable = true;
|
|
};
|
|
|
|
environment.variables.GDK_SCALE = "1.5";
|
|
networking.hostName = "fallarbor";
|
|
system.stateVersion = "24.05";
|
|
|
|
ar = {
|
|
apps = {
|
|
firefox.enable = true;
|
|
steam.enable = true;
|
|
};
|
|
|
|
desktop = {
|
|
greetd.enable = true;
|
|
hyprland.enable = true;
|
|
};
|
|
|
|
services = {
|
|
flatpak.enable = true;
|
|
|
|
syncthing = {
|
|
enable = true;
|
|
syncMusic = false;
|
|
};
|
|
};
|
|
|
|
users = {
|
|
aly = {
|
|
enable = true;
|
|
password = "$y$j9T$0p6rc4p5sn0LJ/6XyAGP7.$.wmTafwMMscdW1o8kqqoHJP7U8kF.4WBmzzcPYielR3";
|
|
};
|
|
|
|
dustin = {
|
|
enable = true;
|
|
password = "$y$j9T$OXQYhj4IWjRJWWYsSwcqf.$lCcdq9S7m0EAdej9KMHWj9flH8K2pUb2gitNhLTlLG/";
|
|
};
|
|
};
|
|
};
|
|
}
|