mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
legacy artemis config - needs refactor
This commit is contained in:
parent
aba3aceed8
commit
961d41b9bf
34 changed files with 1572 additions and 12 deletions
54
home/default.nix
Normal file
54
home/default.nix
Normal 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue