nix/hosts/phone/default.nix

81 lines
1.4 KiB
Nix
Raw Normal View History

2024-10-04 18:30:45 +02:00
{pkgs, ...}: {
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
unixtools.ping
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-09-28 12:06:19 +02:00
home-manager.config = {
2024-09-22 14:45:18 +02:00
home.stateVersion = "24.05";
2024-09-28 12:06:19 +02:00
2024-09-22 14:45:18 +02:00
imports = [
2024-10-14 14:57:24 +02:00
../../modules/programs/home/git
../../modules/programs/home/helix
../../modules/programs/home/zsh
../../modules/programs/home/zoxide
2024-09-22 14:45:18 +02:00
];
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 = {
2024-10-14 14:57:24 +02:00
font = "${pkgs.terminus_font_ttf}/share/fonts/truetype/TerminusTTF.ttf";
2024-09-22 13:42:52 +02:00
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
};
};
}