Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 11s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 1m59s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Failing after 3m36s
Check Nix flake / Build nix outputs (ubuntu-latest) (pull_request) Successful in 19m23s
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
54 lines
861 B
Nix
54 lines
861 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./audio.nix
|
|
./desktop.nix
|
|
./fonts.nix
|
|
./graphics.nix
|
|
./polkit.nix
|
|
./programs.nix
|
|
./steam.nix
|
|
./stylix.nix
|
|
];
|
|
|
|
time.timeZone = "America/New_York";
|
|
|
|
# temp workaround for building while in nixos-enter
|
|
#services.logrotate.checkConfig = false;
|
|
|
|
networking = {
|
|
hostId = "9f2e1ff9";
|
|
firewall.enable = true;
|
|
useNetworkd = true;
|
|
};
|
|
|
|
boot = {
|
|
useSystemdBoot = true;
|
|
default = true;
|
|
};
|
|
|
|
i18n = {
|
|
defaultLocale = "en_US.utf8";
|
|
supportedLocales = [ "en_US.UTF-8/UTF-8" ];
|
|
};
|
|
|
|
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
|
|
services = {
|
|
flatpak.enable = true;
|
|
gvfs.enable = true;
|
|
openssh.enable = lib.mkForce false;
|
|
};
|
|
|
|
system.stateVersion = "25.05";
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
};
|
|
}
|