2024-11-13 08:13:48 +01:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
username,
|
|
|
|
domain,
|
|
|
|
nixpath,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
mail = {
|
|
|
|
a = "contact";
|
|
|
|
b = "mail";
|
|
|
|
c = "spyware";
|
|
|
|
};
|
|
|
|
in {
|
2024-09-22 13:42:52 +02:00
|
|
|
environment.packages = with pkgs; [
|
2024-10-04 18:30:45 +02:00
|
|
|
vim
|
2024-10-14 14:57:24 +02:00
|
|
|
alejandra
|
2024-10-05 02:26:34 +02:00
|
|
|
hostname
|
2024-09-22 13:42:52 +02:00
|
|
|
zsh
|
|
|
|
fish
|
|
|
|
font-awesome
|
|
|
|
fastfetch
|
|
|
|
ipfetch
|
|
|
|
ffmpeg
|
|
|
|
yt-dlp
|
|
|
|
lazygit
|
|
|
|
cowsay
|
|
|
|
procps
|
|
|
|
openssh_hpn
|
|
|
|
git
|
|
|
|
diffutils
|
|
|
|
findutils
|
|
|
|
utillinux
|
|
|
|
tzdata
|
|
|
|
man
|
|
|
|
gnugrep
|
|
|
|
gnupg
|
|
|
|
gnused
|
|
|
|
gnutar
|
|
|
|
bzip2
|
|
|
|
gzip
|
|
|
|
xz
|
|
|
|
zip
|
|
|
|
unzip
|
|
|
|
];
|
|
|
|
|
|
|
|
environment.etcBackupExtension = ".bak";
|
|
|
|
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
|
|
|
|
nix.extraOptions = ''
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
'';
|
|
|
|
|
2024-10-14 14:57:24 +02:00
|
|
|
time.timeZone = "Europe/Zurich";
|
2024-09-22 13:42:52 +02:00
|
|
|
|
2024-11-13 08:13:48 +01:00
|
|
|
home-manager = {
|
|
|
|
extraSpecialArgs = {
|
|
|
|
inherit inputs;
|
|
|
|
inherit username;
|
|
|
|
inherit domain;
|
|
|
|
inherit nixpath;
|
|
|
|
inherit mail;
|
|
|
|
};
|
|
|
|
config = {
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
imports = [
|
|
|
|
./home.nix
|
|
|
|
];
|
|
|
|
};
|
2024-09-22 13:42:52 +02:00
|
|
|
};
|
2024-09-28 12:06:19 +02:00
|
|
|
|
2024-09-22 13:42:52 +02:00
|
|
|
user.shell = "${pkgs.zsh}/bin/zsh";
|
|
|
|
terminal = {
|
|
|
|
colors = {
|
|
|
|
background = "#282828";
|
|
|
|
foreground = "#fbf1c7";
|
2024-10-14 14:57:24 +02:00
|
|
|
color0 = "#282828";
|
|
|
|
color1 = "#cc241d";
|
|
|
|
color2 = "#98971a";
|
|
|
|
color3 = "#d79921";
|
|
|
|
color4 = "#458588";
|
|
|
|
color5 = "#b16286";
|
|
|
|
color6 = "#689d6a";
|
|
|
|
color7 = "#a89984";
|
|
|
|
color8 = "#928374";
|
|
|
|
color9 = "#fb4934";
|
|
|
|
color10 = "#b8bb26";
|
|
|
|
color11 = "#fabd2f";
|
|
|
|
color12 = "#83a598";
|
|
|
|
color13 = "#d3869b";
|
|
|
|
color14 = "#8ec07c";
|
|
|
|
color15 = "#ebdbb2";
|
2024-09-22 13:42:52 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|