move programs in modules such that base.nix il a basic configuration
All checks were successful
/ build-all (push) Successful in 1m37s
All checks were successful
/ build-all (push) Successful in 1m37s
This commit is contained in:
parent
d43ece8ac4
commit
05bbe7463b
8 changed files with 162 additions and 174 deletions
67
home/ui.nix
67
home/ui.nix
|
|
@ -9,6 +9,7 @@ in
|
|||
./bar.nix
|
||||
./hyprland.nix
|
||||
./gui-software.nix
|
||||
./base.nix
|
||||
];
|
||||
|
||||
options = {
|
||||
|
|
@ -18,6 +19,41 @@ in
|
|||
};
|
||||
|
||||
config = {
|
||||
|
||||
home.packages = with pkgs; [
|
||||
inputs.st-flexipatch.packages.${system}.st
|
||||
|
||||
gentium
|
||||
nerd-fonts.noto
|
||||
nerd-fonts.hack
|
||||
nerd-fonts.jetbrains-mono
|
||||
nerd-fonts.caskaydia-cove
|
||||
cascadia-code
|
||||
inter
|
||||
emojione
|
||||
|
||||
bluetuith
|
||||
keepmenu
|
||||
rofimoji
|
||||
ydotool
|
||||
libnotify
|
||||
wtype
|
||||
wl-clipboard
|
||||
|
||||
pamixer
|
||||
pulsemixer
|
||||
|
||||
go-mtpfs
|
||||
xdg-utils
|
||||
|
||||
(catppuccin-gtk.override {
|
||||
accents = [ "pink" ];
|
||||
size = "compact";
|
||||
tweaks = [ "black" ];
|
||||
variant = "mocha";
|
||||
})
|
||||
];
|
||||
|
||||
home.file = {
|
||||
".config/kitty/light.conf".source = dotfiles/kitty/light.conf;
|
||||
".config/kitty/dark.conf".source = dotfiles/kitty/dark.conf;
|
||||
|
|
@ -113,37 +149,6 @@ in
|
|||
TERMINAL = defaultTerminal;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
inputs.st-flexipatch.packages.${system}.st
|
||||
|
||||
gentium
|
||||
nerd-fonts.noto
|
||||
nerd-fonts.hack
|
||||
nerd-fonts.jetbrains-mono
|
||||
nerd-fonts.caskaydia-cove
|
||||
cascadia-code
|
||||
inter
|
||||
emojione
|
||||
|
||||
bluetuith
|
||||
keepmenu
|
||||
rofimoji
|
||||
ydotool
|
||||
libnotify
|
||||
wtype
|
||||
wl-clipboard
|
||||
|
||||
pamixer
|
||||
pulsemixer
|
||||
|
||||
(catppuccin-gtk.override {
|
||||
accents = [ "pink" ];
|
||||
size = "compact";
|
||||
tweaks = [ "black" ];
|
||||
variant = "mocha";
|
||||
})
|
||||
];
|
||||
|
||||
xsession.enable = true;
|
||||
|
||||
fonts.fontconfig.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue