legacy artemis config - needs refactor

This commit is contained in:
Callum Leslie 2024-08-30 17:08:21 +01:00
parent aba3aceed8
commit 961d41b9bf
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
34 changed files with 1572 additions and 12 deletions

54
home/default.nix Normal file
View file

@ -0,0 +1,54 @@
{
inputs,
config,
pkgs,
...
}: {
imports = [./programs ./services];
programs.home-manager.enable = true;
home = {
username = "c";
homeDirectory = "/home/c";
};
home.packages = with pkgs; [
libsecret
bitwarden
betterbird
wl-clipboard
(discord.override {
withOpenASAR = true;
})
brightnessctl
playerctl
pwvucontrol
tldr
grc
fd
rofi-rbw-wayland
wtype
mullvad-vpn
spotify
gnumake
delta
slurp
grim
clang-tools
clang
ghq
gst
udiskie
rustup
ripgrep
zig
ghc
xh
unzip
just
inputs.nixvim.packages."x86_64-linux".default # nixvim
];
home.stateVersion = "24.05";
}