Firefox config, neovim config, tailscale, polkit, updated binds
This commit is contained in:
parent
94ab316127
commit
8323681c70
14 changed files with 392 additions and 83 deletions
|
|
@ -5,6 +5,7 @@
|
|||
./games.nix
|
||||
./home-manager.nix
|
||||
./hyprland.nix
|
||||
./polkit.nix
|
||||
./xdg.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
{inputs, specialArgs, config, ...}: {
|
||||
{
|
||||
inputs,
|
||||
specialArgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.hm.nixosModules.default
|
||||
];
|
||||
|
|
@ -7,6 +11,7 @@
|
|||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = specialArgs;
|
||||
backupFileExtension = "backup";
|
||||
|
||||
users.jsw = import ../../home;
|
||||
};
|
||||
|
|
|
|||
17
system/programs/polkit.nix
Normal file
17
system/programs/polkit.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{pkgs, ...}: {
|
||||
systemd = {
|
||||
user.services.polkit-gnome-authentication-agent-1 = {
|
||||
description = "polkit-gnome-authentication-agent-1";
|
||||
wantedBy = ["graphical-session.target"];
|
||||
wants = ["graphical-session.target"];
|
||||
after = ["graphical-session.target"];
|
||||
serviceConfig = {
|
||||
Type = "simple";
|
||||
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
||||
Restart = "on-failure";
|
||||
RestartSec = 1;
|
||||
TimeoutStopSec = 10;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -4,5 +4,6 @@
|
|||
./kanata.nix
|
||||
./pipewire.nix
|
||||
./power.nix
|
||||
./tailscale.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
3
system/services/tailscale.nix
Normal file
3
system/services/tailscale.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
services.tailscale.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue