mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-05-07 09:34:49 +02:00
nix: Continue home separation
This commit is contained in:
parent
a7102b5b67
commit
e00a88bfea
@ -6,15 +6,19 @@
|
|||||||
./git.nix
|
./git.nix
|
||||||
./gpg.nix
|
./gpg.nix
|
||||||
./gtk.nix
|
./gtk.nix
|
||||||
|
./htop.nix
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
./joshuto.nix
|
./joshuto.nix
|
||||||
./kitty.nix
|
./kitty.nix
|
||||||
|
./librewolf.nix
|
||||||
./mime-apps.nix
|
./mime-apps.nix
|
||||||
./mpv.nix
|
./mpv.nix
|
||||||
./ncmpcpp.nix
|
./ncmpcpp.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./qutebrowser.nix
|
./qutebrowser.nix
|
||||||
./rofi.nix
|
./rofi.nix
|
||||||
|
./swaylock.nix
|
||||||
|
./thunar.nix
|
||||||
./udiskie.nix
|
./udiskie.nix
|
||||||
./waybar.nix
|
./waybar.nix
|
||||||
./waycorner.nix
|
./waycorner.nix
|
||||||
|
9
home/htop.nix
Normal file
9
home/htop.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.htop = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs."htop-vim";
|
||||||
|
settings = { tree_view = 1; };
|
||||||
|
};
|
||||||
|
}
|
6
home/thunar.nix
Normal file
6
home/thunar.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
xdg.configFile."xfce4/helpers.rc".text = ''
|
||||||
|
TerminalEmulator=kitty
|
||||||
|
TerminalEmulatorDismissed=true
|
||||||
|
'';
|
||||||
|
}
|
@ -11,13 +11,4 @@
|
|||||||
|
|
||||||
services.gvfs.enable = true; # Trash support
|
services.gvfs.enable = true; # Trash support
|
||||||
services.gnome.gnome-keyring.enable = true; # Mount support
|
services.gnome.gnome-keyring.enable = true; # Mount support
|
||||||
|
|
||||||
home-manager.sharedModules = [
|
|
||||||
{
|
|
||||||
xdg.configFile."xfce4/helpers.rc".text = ''
|
|
||||||
TerminalEmulator=kitty
|
|
||||||
TerminalEmulatorDismissed=true
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
@ -29,6 +29,8 @@ let VARIABLES = import ./variables.nix; in {
|
|||||||
i18n.inputMethod.enabled = "fcitx5";
|
i18n.inputMethod.enabled = "fcitx5";
|
||||||
i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ];
|
i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ];
|
||||||
|
|
||||||
|
security.pam.services.swaylock = { };
|
||||||
|
|
||||||
# nix
|
# nix
|
||||||
nix.package = pkgs.nixFlakes;
|
nix.package = pkgs.nixFlakes;
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" "repl-flake" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" "repl-flake" ];
|
||||||
@ -280,12 +282,6 @@ let VARIABLES = import ./variables.nix; in {
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.htop = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs."htop-vim";
|
|
||||||
settings = { tree_view = 1; };
|
|
||||||
};
|
|
||||||
|
|
||||||
services.greetd = {
|
services.greetd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
restart = false;
|
restart = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user