2022-08-18 23:15:50 +02:00
|
|
|
{ pkgs, unstable-pkgs, config, inputs, secrets, ... }:
|
2022-04-03 18:03:55 +02:00
|
|
|
let
|
|
|
|
inherit (pkgs) lib;
|
2022-08-16 03:24:06 +02:00
|
|
|
# inherit (specialArgs) machineVars;
|
|
|
|
inherit (config) machineVars;
|
2022-06-22 20:16:57 +02:00
|
|
|
# has_graphics = !config.machineVars.headless;
|
2022-04-03 18:03:55 +02:00
|
|
|
in {
|
2022-06-21 01:47:36 +02:00
|
|
|
nixpkgs.config = {
|
|
|
|
allowUnfree = true;
|
|
|
|
};
|
2022-04-03 18:03:55 +02:00
|
|
|
|
|
|
|
nix = {
|
2022-08-18 23:15:50 +02:00
|
|
|
package = unstable-pkgs.nixFlakes;
|
2022-08-16 03:24:06 +02:00
|
|
|
distributedBuilds = config.networking.hostName != "Tsuki";
|
2022-06-02 16:33:21 +02:00
|
|
|
binaryCaches = [
|
|
|
|
"https://cache.nixos.org/"
|
|
|
|
];
|
|
|
|
|
2022-04-03 18:03:55 +02:00
|
|
|
extraOptions = ''
|
|
|
|
experimental-features = nix-command flakes
|
2022-06-12 00:07:40 +02:00
|
|
|
builders-use-substitutes = true
|
2022-04-03 18:03:55 +02:00
|
|
|
'';
|
2022-06-12 00:07:40 +02:00
|
|
|
|
2022-06-02 16:33:21 +02:00
|
|
|
trustedUsers = [ "h7x4" ];
|
2022-06-12 00:07:40 +02:00
|
|
|
|
|
|
|
buildMachines = [
|
|
|
|
{
|
|
|
|
hostName = "Tsuki";
|
|
|
|
system = "x86_64-linux";
|
|
|
|
maxJobs = 1;
|
|
|
|
speedFactor = 3;
|
|
|
|
supportedFeatures = [
|
|
|
|
"nixos-test"
|
|
|
|
"benchmark"
|
|
|
|
"big-paralell"
|
|
|
|
"kvm"
|
|
|
|
];
|
|
|
|
mandatoryFeatures = [];
|
|
|
|
}
|
|
|
|
];
|
2022-06-02 16:33:21 +02:00
|
|
|
# registry = {
|
|
|
|
|
|
|
|
# };
|
|
|
|
};
|
|
|
|
|
|
|
|
time.timeZone = "Europe/Oslo";
|
|
|
|
|
|
|
|
console = {
|
|
|
|
font = "Lat2-Terminus16";
|
|
|
|
keyMap = "us";
|
|
|
|
};
|
|
|
|
|
|
|
|
networking = {
|
|
|
|
useDHCP = false;
|
|
|
|
nameservers = [
|
|
|
|
"1.1.1.1"
|
|
|
|
"8.8.8.8"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
i18n = {
|
|
|
|
defaultLocale = "en_US.UTF-8";
|
|
|
|
inputMethod = lib.mkIf (!machineVars.headless) {
|
|
|
|
enabled = "fcitx";
|
|
|
|
fcitx.engines = with pkgs.fcitx-engines; [ mozc ];
|
|
|
|
};
|
|
|
|
|
|
|
|
# inputMethod = {
|
|
|
|
# enabled = "fcitx5";
|
|
|
|
# fcitx5.addons = with pkgs; [
|
|
|
|
# fcitx5-mozc
|
|
|
|
# fcitx5-gtk
|
|
|
|
# ];
|
|
|
|
# };
|
2022-04-03 18:03:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
environment = {
|
|
|
|
variables = {
|
|
|
|
EDITOR = "nvim";
|
|
|
|
VISUAL = "nvim";
|
|
|
|
};
|
|
|
|
|
2022-06-21 01:47:36 +02:00
|
|
|
systemPackages = with pkgs; ([
|
2022-06-12 00:07:40 +02:00
|
|
|
wget
|
2022-06-22 20:16:57 +02:00
|
|
|
] ++ (lib.optionals (!config.machineVars.headless) [
|
2022-06-12 00:07:40 +02:00
|
|
|
haskellPackages.xmobar
|
2022-06-21 01:47:36 +02:00
|
|
|
]));
|
2022-06-12 00:07:40 +02:00
|
|
|
|
2022-04-03 18:03:55 +02:00
|
|
|
shells = with pkgs; [
|
|
|
|
bashInteractive
|
|
|
|
zsh
|
|
|
|
dash
|
|
|
|
];
|
|
|
|
|
|
|
|
etc = {
|
|
|
|
# TODO: move this out of etc, and reference it directly in sudo config.
|
|
|
|
sudoLecture = {
|
|
|
|
target = "sudo.lecture";
|
|
|
|
text = lib.termColors.front.red "Be careful or something, idk...\n";
|
|
|
|
};
|
|
|
|
|
|
|
|
"resolv.conf".source = let
|
|
|
|
inherit (lib.strings) concatStringsSep;
|
|
|
|
inherit (pkgs) writeText;
|
|
|
|
in writeText "resolv.conf" ''
|
|
|
|
${concatStringsSep "\n" (map (ns: "nameserver ${ns}") config.networking.nameservers)}
|
|
|
|
options edns0
|
|
|
|
'';
|
|
|
|
|
|
|
|
currentSystemPackages = {
|
|
|
|
target = "current-system-packages";
|
|
|
|
text = let
|
|
|
|
inherit (lib.strings) concatStringsSep;
|
|
|
|
inherit (lib.lists) sort;
|
|
|
|
inherit (lib.trivial) lessThan;
|
|
|
|
packages = map (p: "${p.name}") config.environment.systemPackages;
|
|
|
|
sortedUnique = sort lessThan (lib.unique packages);
|
|
|
|
in concatStringsSep "\n" sortedUnique;
|
|
|
|
};
|
|
|
|
};
|
2022-06-02 16:33:21 +02:00
|
|
|
|
|
|
|
shellAliases.fixDisplay = let
|
|
|
|
inherit (config.machineVars) screens headless fixDisplayCommand;
|
2022-08-16 03:24:06 +02:00
|
|
|
|
2022-06-02 16:33:21 +02:00
|
|
|
screenToArgs = screen: with screen;
|
|
|
|
"--output ${name} --mode ${resolution}"
|
|
|
|
+ (lib.optionalString (frequency != null) " --rate ${frequency}");
|
2022-08-16 03:24:06 +02:00
|
|
|
|
2022-06-02 16:33:21 +02:00
|
|
|
screenArgs = lib.concatStringsSep " " (lib.mapAttrsToList screenToArgs screens);
|
2022-08-16 03:24:06 +02:00
|
|
|
|
2022-06-02 16:33:21 +02:00
|
|
|
in lib.mkIf (!headless)
|
2022-08-16 03:24:06 +02:00
|
|
|
(if screenArgs == null
|
|
|
|
then "xrandr ${screenArgs}"
|
|
|
|
else (lib.mkIf (fixDisplayCommand != null) fixDisplayCommand));
|
2022-04-03 18:03:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
fonts = {
|
|
|
|
enableDefaultFonts = true;
|
|
|
|
|
2022-06-21 01:47:36 +02:00
|
|
|
fontDir.enable = true;
|
|
|
|
|
2022-04-03 18:03:55 +02:00
|
|
|
fonts = with pkgs; [
|
|
|
|
cm_unicode
|
|
|
|
dejavu_fonts
|
|
|
|
fira-code
|
|
|
|
fira-code-symbols
|
|
|
|
powerline-fonts
|
|
|
|
iosevka
|
|
|
|
symbola
|
|
|
|
corefonts
|
|
|
|
ipaexfont
|
|
|
|
ipafont
|
|
|
|
liberation_ttf
|
|
|
|
migmix
|
|
|
|
noto-fonts
|
2022-06-12 00:23:10 +02:00
|
|
|
noto-fonts-cjk-sans
|
|
|
|
noto-fonts-cjk-serif
|
2022-04-03 18:03:55 +02:00
|
|
|
noto-fonts-emoji
|
2022-06-02 16:33:21 +02:00
|
|
|
ocr-a
|
2022-04-03 18:03:55 +02:00
|
|
|
open-sans
|
|
|
|
source-han-sans
|
|
|
|
source-sans
|
|
|
|
ubuntu_font_family
|
|
|
|
victor-mono
|
|
|
|
(nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" ]; })
|
|
|
|
inputs.fonts
|
|
|
|
];
|
|
|
|
|
|
|
|
fontconfig = {
|
|
|
|
defaultFonts = {
|
|
|
|
serif = [ "Droid Sans Serif" "Ubuntu" ];
|
|
|
|
sansSerif = [ "Droid Sans" "Ubuntu" ];
|
|
|
|
monospace = [ "Fira Code" "Ubuntu" ];
|
|
|
|
emoji = [ "Noto Sans Emoji" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-06-02 16:33:21 +02:00
|
|
|
users = {
|
|
|
|
users.h7x4 = {
|
|
|
|
isNormalUser = true;
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
|
|
|
|
extraGroups = [
|
|
|
|
"wheel"
|
|
|
|
"networkmanager"
|
|
|
|
"docker"
|
|
|
|
"disk"
|
|
|
|
"audio"
|
|
|
|
"video"
|
|
|
|
"libvirtd"
|
|
|
|
"input"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
groups = {
|
|
|
|
adbusers.members = [ "h7x4" ];
|
|
|
|
};
|
2022-04-03 18:03:55 +02:00
|
|
|
};
|
|
|
|
|
2022-06-12 00:07:40 +02:00
|
|
|
services = {
|
2022-06-21 01:47:36 +02:00
|
|
|
tumbler.enable = !config.machineVars.headless;
|
|
|
|
gnome.gnome-keyring.enable = !config.machineVars.headless;
|
2022-06-12 00:07:40 +02:00
|
|
|
|
|
|
|
openssh = {
|
|
|
|
# enable = true;
|
|
|
|
passwordAuthentication = false;
|
|
|
|
kbdInteractiveAuthentication = false;
|
|
|
|
permitRootLogin = "no";
|
|
|
|
};
|
|
|
|
|
2022-09-22 04:08:38 +02:00
|
|
|
udev.packages = with pkgs; [
|
|
|
|
yubikey-personalization
|
|
|
|
android-udev-rules
|
|
|
|
];
|
|
|
|
|
|
|
|
pcscd.enable = true;
|
|
|
|
|
2022-06-12 00:07:40 +02:00
|
|
|
dbus = {
|
2022-06-21 01:47:36 +02:00
|
|
|
# enable = !machineVars.headless;
|
2022-06-12 00:07:40 +02:00
|
|
|
packages = with pkgs; [
|
|
|
|
gcr
|
|
|
|
dconf
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
xserver = {
|
2022-06-02 16:33:21 +02:00
|
|
|
# TODO: What is going on here?
|
2022-06-21 01:47:36 +02:00
|
|
|
# For some reason, this leads to infinite recursion.
|
|
|
|
# This needs to be fixed!
|
|
|
|
# Same with `displayManager.lightdm.enable`
|
|
|
|
# options are defined in each hosts config file for the time being.
|
|
|
|
#
|
|
|
|
# I have a hypothesis that there are some asserts within xserver that
|
|
|
|
# makes it so that other software can not be activated at the same time
|
|
|
|
# and that those asserts triggers some kind of evaluation chain that
|
|
|
|
# recurses infinitely.
|
2022-06-22 20:16:57 +02:00
|
|
|
# enable = true;
|
2022-06-12 00:07:40 +02:00
|
|
|
layout = "us";
|
|
|
|
xkbOptions = "caps:escape";
|
|
|
|
|
|
|
|
libinput = {
|
|
|
|
enable = true;
|
|
|
|
touchpad.disableWhileTyping = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
desktopManager = {
|
|
|
|
xterm.enable = false;
|
2022-06-21 01:47:36 +02:00
|
|
|
xfce.enable = !config.machineVars.headless;
|
2022-06-12 00:07:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
windowManager.xmonad = {
|
|
|
|
enable = true;
|
|
|
|
enableContribAndExtras = true;
|
2022-08-19 03:49:21 +02:00
|
|
|
enableConfiguredRecompile = true;
|
|
|
|
extraPackages = hPkgs: with hPkgs; [
|
|
|
|
dbus
|
|
|
|
];
|
2022-06-12 00:07:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# displayManager.startx.enable = true;
|
|
|
|
# displayManager.gdm.enable = true;
|
2022-06-22 20:16:57 +02:00
|
|
|
# displayManager.lightdm.enable = true;
|
2022-06-12 00:07:40 +02:00
|
|
|
displayManager.defaultSession = "none+xmonad";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
programs = {
|
2022-06-21 01:47:36 +02:00
|
|
|
dconf.enable = !config.machineVars.headless;
|
2022-06-12 00:07:40 +02:00
|
|
|
git.enable = true;
|
2022-06-21 01:47:36 +02:00
|
|
|
light.enable = !config.machineVars.headless;
|
2022-06-12 00:07:40 +02:00
|
|
|
npm.enable = true;
|
|
|
|
tmux.enable = true;
|
|
|
|
|
|
|
|
gnupg.agent = {
|
|
|
|
enable = true;
|
|
|
|
enableSSHSupport = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
neovim = {
|
|
|
|
enable = true;
|
|
|
|
defaultEditor = true;
|
|
|
|
viAlias = true;
|
|
|
|
vimAlias = true;
|
|
|
|
configure = {
|
|
|
|
packages.myVimPackage = with pkgs.vimPlugins; {
|
|
|
|
start = [
|
|
|
|
direnv-vim
|
|
|
|
vim-nix
|
|
|
|
vim-polyglot
|
|
|
|
];
|
|
|
|
|
|
|
|
opt = [
|
|
|
|
vim-monokai
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
customRC = ''
|
|
|
|
set number relativenumber
|
|
|
|
set undofile
|
|
|
|
set undodir=~/.cache/vim/undodir
|
|
|
|
|
|
|
|
packadd! vim-monokai
|
|
|
|
colorscheme monokai
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-06-21 01:47:36 +02:00
|
|
|
system.extraDependencies =
|
|
|
|
lib.optionals (config.machineVars.development) (with pkgs; [
|
|
|
|
asciidoc
|
|
|
|
asciidoctor
|
|
|
|
cabal2nix
|
|
|
|
clang
|
|
|
|
dart
|
|
|
|
dotnet-sdk
|
|
|
|
dotnet-sdk_3
|
|
|
|
dotnet-sdk_5
|
|
|
|
dotnetPackages.Nuget
|
|
|
|
elm2nix
|
|
|
|
elmPackages.elm
|
|
|
|
flutter
|
|
|
|
gcc
|
|
|
|
ghc
|
|
|
|
ghcid
|
|
|
|
haskellPackages.Cabal_3_6_3_0
|
|
|
|
maven
|
|
|
|
nixfmt
|
|
|
|
nixpkgs-fmt
|
|
|
|
# nixpkgs-hammering
|
|
|
|
nodePackages.node2nix
|
|
|
|
nodePackages.npm
|
|
|
|
nodePackages.sass
|
|
|
|
nodePackages.typescript
|
|
|
|
nodePackages.yarn
|
|
|
|
nodejs
|
|
|
|
plantuml
|
|
|
|
python3
|
|
|
|
rustc
|
|
|
|
rustc
|
|
|
|
rustup
|
|
|
|
sqlcheck
|
|
|
|
sqlint
|
|
|
|
sqlite
|
|
|
|
sqlite-web
|
|
|
|
]);
|
|
|
|
|
2022-06-12 00:07:40 +02:00
|
|
|
sound = {
|
2022-06-21 01:47:36 +02:00
|
|
|
enable = !config.machineVars.headless;
|
2022-06-12 00:07:40 +02:00
|
|
|
mediaKeys.enable = true;
|
|
|
|
};
|
|
|
|
|
2022-06-21 01:47:36 +02:00
|
|
|
hardware.pulseaudio.enable = !config.machineVars.headless;
|
2022-06-12 00:07:40 +02:00
|
|
|
|
2022-04-03 18:03:55 +02:00
|
|
|
security.sudo.extraConfig = ''
|
|
|
|
Defaults lecture = always
|
|
|
|
Defaults lecture_file = /etc/${config.environment.etc.sudoLecture.target}
|
|
|
|
'';
|
2022-06-12 00:07:40 +02:00
|
|
|
|
|
|
|
system.stateVersion = "22.05";
|
2022-04-03 18:03:55 +02:00
|
|
|
}
|