Files
nixy/hosts/laptop/variables.nix
T
KptltD00M 5b6e5a537c chore: update gitignore and nix configurations
- Add `result` and `result/` to `.gitignore`
- Remove `proton-ge-bin` from Steam packages
- Update laptop flake configuration with hardware optimizations
- Adjust graphics and locale settings
- Disable `power-profiles-daemon` in utils and laptop configs
2026-06-24 21:12:46 +02:00

39 lines
701 B
Nix

{
config,
lib,
...
}: {
imports = [
# Choose your theme here:
../../themes/nixy.nix
];
config.var = {
hostname = "thinkpad";
username = "andi";
configDirectory = "/home/" + config.var.username + "/.config/nixos"; # The path of the nixos configuration directory
keyboardLayout = "de";
timeZone = "Europe/Berlin";
defaultLocale = "de_DE.UTF-8";
extraLocale = "en_US.UTF-8";
git = {
username = "kptltd00m";
email = "kptltd00m@doomlabs.de";
};
autoUpgrade = false;
autoGarbageCollector = true;
};
# DON'T TOUCH THIS
options = {
var = lib.mkOption {
type = lib.types.attrs;
default = {};
};
};
}