rice/users/buffet/default.nix

119 lines
1.9 KiB
Nix
Raw Normal View History

2024-01-29 13:30:45 +00:00
{
pkgs,
lib,
...
}: {
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
./gpg.nix
./ime.nix
./mako.nix
./sway.nix
];
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; [
#SDL2
#SDL2.dev
#alejandra
#bear
#black
#c2ffi
#cage
#cairo
#chromium
#ed
#gcc
#gnumake
#mpv
#python3
cargo
cargo-crev
cargo-limit
cargo-nextest
du-dust
fd
gdb
github-cli
htop
hyperfine
jq
kcachegrind
linuxPackages.perf
man-pages
man-pages-posix
2024-01-21 16:10:35 +00:00
mosh
2024-01-29 13:30:45 +00:00
oed
2024-01-19 14:36:08 +00:00
okular
pavucontrol
radare2
ripgrep
rr
rustfmt
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
#(luajit.withPackages (ps:
# with ps; [
# fennel
# inspect
# luv
# ]))
#(retroarch.override {
# cores = with libretro; [
# genesis-plus-gx
# ];
#})
];
pointerCursor = {
package = pkgs.phinger-cursors;
name = "phinger-cursors-light";
gtk.enable = true;
};
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
};
}