configuration.nix/hosts/skipper/default.nix

65 lines
1.3 KiB
Nix
Raw Normal View History

2023-07-20 20:40:19 +05:30
{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-07-20 20:40:19 +05:30
./network.nix
2023-03-15 22:11:59 +05:30
./persistence.nix
./plymouth.nix
./rollback.nix
2023-03-15 22:11:59 +05:30
./secureboot.nix
2023-04-07 20:55:19 +05:30
./security.nix
2023-03-15 22:11:59 +05:30
./virtualisation.nix
];
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 = {
2023-07-28 09:33:45 +05:30
enableDefaultPackages = true;
2023-04-07 19:53:00 +05:30
fontDir.enable = true;
2023-07-28 09:33:45 +05:30
packages = with pkgs; [
2023-04-07 19:53:00 +05:30
cantarell-fonts
liberation_ttf
2023-05-18 16:11:26 +05:30
(nerdfonts.override {fonts = ["FiraCode"];})
2023-04-07 19:53:00 +05:30
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
];
};
2023-05-01 14:31:18 +05:30
gtk.iconCache.enable = true;
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-05-18 16:11:26 +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
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;
2023-05-18 16:11:26 +05:30
extraPortals = with pkgs; [xdg-desktop-portal-gtk xdg-desktop-portal-hyprland];
2023-03-15 22:11:59 +05:30
};
2023-06-02 11:28:54 +05:30
system.stateVersion = "23.11";
2023-03-15 22:11:59 +05:30
}