rice/users/buffet/default.nix

114 lines
1.9 KiB
Nix
Raw Normal View History

2024-01-29 13:30:45 +00:00
{
pkgs,
...
}: {
2024-01-19 14:36:08 +00:00
imports = [
./bash.nix
./cargo.nix
2024-01-21 16:10:23 +00:00
./comma.nix
2024-01-19 14:36:08 +00:00
./firefox.nix
./foot.nix
2024-02-01 14:50:04 +00:00
./fzf.nix
2024-01-19 14:36:08 +00:00
./git.nix
2024-08-10 15:23:41 +00:00
./git-entr.nix
2024-01-19 14:36:08 +00:00
./ime.nix
./mako.nix
./nixvim.nix
2024-03-18 11:17:29 +00:00
./nvd.nix
2024-07-15 15:55:20 +00:00
./ssh.nix
2024-01-19 14:36:08 +00:00
./sway.nix
./taskwarrior.nix
2024-01-19 14:36:08 +00:00
];
users.users.buffet = {
isNormalUser = true;
uid = 1000;
hashedPassword = "$y$j9T$g/a4KaQ5VitWI9ZtAh9i3/$wjejk5W8LMc0gaVgw69kwrKLqBgZ95ekaOl/GaTOZVC";
extraGroups = [
2024-02-25 19:06:51 +00:00
"audio"
2024-01-19 14:36:08 +00:00
"networkmanager"
"sway"
"uinput"
"wheel"
];
};
2024-01-25 15:54:05 +00:00
nix.settings.trusted-users = ["buffet"];
2024-01-19 14:36:08 +00:00
home-manager.users.buffet = {
home = {
stateVersion = "23.11";
2024-01-25 15:54:05 +00:00
sessionVariables = {
2024-01-29 14:50:05 +00:00
EDITOR = "${pkgs.oed}/bin/ed";
2024-01-25 15:54:05 +00:00
};
2024-01-19 14:36:08 +00:00
packages = with pkgs; [
unstable.anki
2024-05-15 09:23:14 +00:00
unstable.cargo
2024-05-15 09:44:45 +00:00
unstable.cargo-crev
unstable.cargo-limit
unstable.cargo-nextest
unstable.cargo-watch
unstable.clippy
2024-05-15 09:23:14 +00:00
unstable.rustfmt
2024-01-19 14:36:08 +00:00
alejandra
2024-06-09 15:06:15 +00:00
clang
2024-01-19 14:36:08 +00:00
du-dust
2024-08-10 15:23:41 +00:00
entr
2024-01-19 14:36:08 +00:00
fd
2024-04-06 16:12:47 +00:00
fx
2024-01-19 14:36:08 +00:00
gdb
github-cli
2024-06-09 15:06:15 +00:00
gnumake
2024-05-30 19:05:30 +00:00
guile
2024-01-19 14:36:08 +00:00
htop
hyperfine
jq
kcachegrind
2024-06-26 08:17:39 +00:00
libclang
libllvm
2024-01-19 14:36:08 +00:00
linuxPackages.perf
man-pages
man-pages-posix
2024-07-24 13:54:11 +00:00
meson
2024-01-21 16:10:35 +00:00
mosh
2024-04-09 15:32:50 +00:00
mpv
2024-07-24 13:54:11 +00:00
ninja
2024-01-29 13:30:45 +00:00
oed
2024-01-19 14:36:08 +00:00
okular
pavucontrol
2024-06-08 18:12:35 +00:00
python3
2024-03-18 11:27:11 +00:00
qdirstat
2024-01-19 14:36:08 +00:00
radare2
ripgrep
rr
2024-05-09 15:02:37 +00:00
statix
2024-01-19 14:36:08 +00:00
strace
tokei
trash-cli
tree
2024-02-25 19:06:41 +00:00
unzip
2024-01-19 14:36:08 +00:00
valgrind
wget
wl-clipboard
2024-02-25 19:06:41 +00:00
zip
2024-01-19 14:36:08 +00:00
];
pointerCursor = {
package = pkgs.phinger-cursors;
2024-01-19 14:36:08 +00:00
name = "phinger-cursors-light";
gtk.enable = true;
};
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
2024-03-19 12:41:50 +00:00
services.udiskie.enable = true;
2024-01-19 14:36:08 +00:00
};
}