configuration.nix/hosts/skipper/default.nix
2023-07-28 09:33:45 +05:30

64 lines
1.3 KiB
Nix

{pkgs, ...}: {
imports = [
./hardware
./programs
./services
./network.nix
./persistence.nix
./plymouth.nix
./rollback.nix
./secureboot.nix
./security.nix
./virtualisation.nix
];
console.useXkbConfig = true;
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
};
fonts = {
enableDefaultPackages = true;
fontDir.enable = true;
packages = with pkgs; [
cantarell-fonts
liberation_ttf
(nerdfonts.override {fonts = ["FiraCode"];})
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
];
};
gtk.iconCache.enable = true;
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";
};
supportedLocales = ["en_US.UTF-8/UTF-8"];
};
location.provider = "geoclue2";
sound.enable = true;
time.timeZone = "Asia/Kolkata";
xdg.portal = {
enable = true;
extraPortals = with pkgs; [xdg-desktop-portal-gtk xdg-desktop-portal-hyprland];
};
system.stateVersion = "23.11";
}