mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 01:14:01 +01:00
nix: Continue home separation
This commit is contained in:
parent
a7102b5b67
commit
e00a88bfea
@ -6,15 +6,19 @@
|
||||
./git.nix
|
||||
./gpg.nix
|
||||
./gtk.nix
|
||||
./htop.nix
|
||||
./hyprland.nix
|
||||
./joshuto.nix
|
||||
./kitty.nix
|
||||
./librewolf.nix
|
||||
./mime-apps.nix
|
||||
./mpv.nix
|
||||
./ncmpcpp.nix
|
||||
./neovim.nix
|
||||
./qutebrowser.nix
|
||||
./rofi.nix
|
||||
./swaylock.nix
|
||||
./thunar.nix
|
||||
./udiskie.nix
|
||||
./waybar.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.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.fcitx5.addons = [ pkgs.fcitx5-mozc ];
|
||||
|
||||
security.pam.services.swaylock = { };
|
||||
|
||||
# nix
|
||||
nix.package = pkgs.nixFlakes;
|
||||
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 = {
|
||||
enable = true;
|
||||
restart = false;
|
||||
|
Loading…
Reference in New Issue
Block a user