configuration.nix/hosts/skipper/default.nix

82 lines
1.7 KiB
Nix
Raw Normal View History

2023-04-04 09:17:30 +05:30
{ config, lib, pkgs, ... }: {
2023-03-15 22:11:59 +05:30
imports = [
2023-04-04 09:17:30 +05:30
./hardware
2023-04-07 20:36:59 +05:30
./programs
2023-04-07 20:47:01 +05:30
./services
2023-03-15 22:11:59 +05:30
./persistence.nix
./plymouth.nix
./secureboot.nix
2023-04-07 20:55:19 +05:30
./security.nix
2023-03-15 22:11:59 +05:30
./virtualisation.nix
];
2023-04-10 23:07:05 +05:30
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2023-04-16 11:40:59 +05:30
boot.tmp.cleanOnBoot = true;
2023-03-15 22:11:59 +05:30
console.useXkbConfig = true;
2023-03-28 19:31:00 +05:30
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
};
2023-04-07 19:53:00 +05:30
fonts = {
enableDefaultFonts = true;
fontDir.enable = true;
fonts = with pkgs; [
cantarell-fonts
liberation_ttf
(nerdfonts.override { fonts = [ "FiraCode" ]; })
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
];
};
2023-03-15 22:11:59 +05:30
i18n = {
defaultLocale = "en_US.UTF-8";
extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
LC_ALL = "en_US.UTF-8";
};
2023-03-29 21:48:55 +05:30
supportedLocales = [ "en_US.UTF-8/UTF-8" ];
2023-03-15 22:11:59 +05:30
};
2023-04-07 13:45:51 +05:30
location.provider = "geoclue2";
2023-03-15 22:11:59 +05:30
networking = {
hostName = "Skipper";
2023-03-16 21:10:20 +05:30
networkmanager = {
enable = true;
2023-03-16 21:11:08 +05:30
dns = "systemd-resolved";
2023-03-16 21:10:20 +05:30
wifi = {
2023-03-16 21:10:49 +05:30
backend = "iwd";
2023-03-16 21:10:20 +05:30
powersave = false;
};
2023-03-21 21:27:40 +05:30
extraConfig = ''
[device]
wifi.iwd.autoconnect=yes
'';
2023-03-16 21:10:20 +05:30
};
2023-03-15 22:11:59 +05:30
useDHCP = lib.mkDefault false;
2023-03-16 21:10:49 +05:30
wireless.iwd.enable = true;
2023-03-15 22:11:59 +05:30
};
sound.enable = true;
time.timeZone = "Asia/Kolkata";
2023-04-07 19:53:00 +05:30
xdg.portal = {
2023-04-07 20:47:01 +05:30
enable = true;
extraPortals = with pkgs; [ xdg-desktop-portal-gtk xdg-desktop-portal-hyprland ];
2023-03-15 22:11:59 +05:30
};
system.stateVersion = "23.05";
}