nixos-config/sets/base.nix

96 lines
1.9 KiB
Nix
Raw Normal View History

2024-03-02 03:13:17 +00:00
{
config,
lib,
inputs,
...
}:
2020-04-11 21:47:33 +00:00
{
2024-02-15 23:45:15 +00:00
imports = [
2024-03-28 19:55:28 +00:00
inputs.lix-module.nixosModules.default
2024-02-15 23:45:15 +00:00
inputs.private.nixosModules.base
inputs.private.nixosModules.substituter
2024-05-14 19:46:39 +00:00
./xonsh.nix
2024-02-15 23:45:15 +00:00
];
2023-11-26 07:30:29 +00:00
2020-11-17 01:51:13 +00:00
nix = {
settings = {
auto-optimise-store = true;
2024-03-02 03:13:17 +00:00
experimental-features = [
"nix-command"
"flakes"
"ca-derivations"
];
use-xdg-base-directories = true;
};
2020-11-17 01:51:13 +00:00
};
2020-04-11 21:47:33 +00:00
nixpkgs = {
2024-03-02 03:13:17 +00:00
overlays = [
inputs.artemist.overlays.default
inputs.fonts.overlays.default
flake.lock: Update Flake lock file updates: • Updated input 'artemist': 'git+https://git.mildlyfunctional.gay/artemist/packages.git?ref=refs/heads/canon&rev=6656b07f2cbd2e5343afdd82eb9967c4a3f1bb0f' (2024-07-10) → 'git+https://git.mildlyfunctional.gay/artemist/packages.git?ref=refs/heads/canon&rev=01959e74e880876233f75658a3d763d4b46560b5' (2024-07-15) • Removed input 'artemist/utils' • Updated input 'fonts': 'git+https://git.mildlyfunctional.gay/artemist/fonts.git?ref=refs/heads/canon&rev=af26c827792d79cc728134ad508ddab4bd28c038' (2024-02-21) → 'git+https://git.mildlyfunctional.gay/artemist/fonts.git?ref=refs/heads/canon&rev=587fad82e8315cea705cfdcae1328e0da3756555' (2024-07-15) • Removed input 'fonts/flake-utils' • Updated input 'lix': 'https://git.lix.systems/api/v1/repos/lix-project/lix/archive/a8f443d96011c11ad726c2a28a37752bd56c12cc.tar.gz?narHash=sha256-YZ7043PFS6LalHAyGeO7qRLeZIevwjHRbbMkpixjwhM%3D' (2024-07-12) → 'https://git.lix.systems/api/v1/repos/lix-project/lix/archive/1eb5d22132a57487e0cb84a65ecd35814624c0e5.tar.gz?narHash=sha256-fueWQn/bzWcYeR01UWAhjMejgpQc2mjSPt3gb5tpoMs%3D' (2024-07-14) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/7e7c39ea35c5cdd002cd4588b03a3fb9ece6fad9' (2024-07-12) → 'github:nixos/nixpkgs/693bc46d169f5af9c992095736e82c3488bf7dbb' (2024-07-14) • Updated input 'nixvim': 'github:nix-community/nixvim/ac9a1cbf9c7145687e66a1c033d68fc72eca3fd8' (2024-07-13) → 'github:nix-community/nixvim/b9ed90003273f0a75151b32948e16b44891f403c' (2024-07-15)
2024-07-15 20:34:30 +00:00
(final: prev: { kicad = prev.kicad.override { python3 = final.python311; }; })
2024-03-02 03:13:17 +00:00
];
config.allowUnfreePredicate =
pkg:
2023-12-20 19:06:40 +00:00
(pkg ? passthru && pkg.passthru ? font && pkg.passthru.font)
|| (builtins.elem (lib.getName pkg) [
"1password"
"brscan5"
"brscan5-etc-files"
2024-01-31 00:26:31 +00:00
"celeste64"
"corefonts"
"google-chrome"
"jlink"
"makemkv"
"steam"
"steam-jupiter-original"
"steam-original"
"steam-run"
2024-01-31 00:26:31 +00:00
"steamdeck-hw-theme"
"uhk-agent"
"uhk-udev-rules"
"unrar"
2023-12-20 19:06:40 +00:00
]);
};
2020-11-17 01:51:13 +00:00
console = {
keyMap = "us";
earlySetup = true;
};
2020-04-11 21:47:33 +00:00
2020-11-17 01:51:13 +00:00
time.timeZone = "Etc/UTC";
2021-01-10 06:27:22 +00:00
environment.shellAliases.cp = "cp --reflink=auto --sparse=always";
2020-11-17 01:51:13 +00:00
networking.firewall.enable = false;
2020-04-11 21:47:33 +00:00
programs.fish.enable = true;
2020-04-11 21:47:33 +00:00
users = {
users.artemis = {
isNormalUser = true;
description = "Artemis Tosini";
uid = 1000;
2024-03-02 03:13:17 +00:00
extraGroups = [
"wheel"
"artemis"
];
shell = "/run/current-system/sw/bin/fish";
2020-04-11 21:47:33 +00:00
# hashedPassword set in private
};
groups.artemis.gid = config.users.users.artemis.uid;
2020-04-11 21:47:33 +00:00
mutableUsers = false;
};
2022-01-27 16:19:56 +00:00
2024-05-04 00:25:30 +00:00
security.sudo.execWheelOnly = true;
2022-01-27 16:19:56 +00:00
2020-04-11 21:47:33 +00:00
systemd.extraConfig = "DefaultLimitCORE=infinity";
2024-03-02 03:13:17 +00:00
security.pam.loginLimits = [
{
domain = "*";
item = "core";
type = "hard";
value = "infinity";
}
];
2020-04-11 21:47:33 +00:00
}