refactor
This commit is contained in:
parent
7406d068b4
commit
ec45f12c12
16 changed files with 217 additions and 34 deletions
|
|
@ -1,9 +0,0 @@
|
|||
{...}: {
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./audio.nix
|
||||
./bluetooth.nix
|
||||
./boot.nix
|
||||
./btrfs.nix
|
||||
|
|
@ -17,7 +16,6 @@
|
|||
./power.nix
|
||||
./users.nix
|
||||
./zsh.nix
|
||||
./input.nix
|
||||
|
||||
./virtualization.nix
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
{ pkgs, ...}: {
|
||||
fonts.packages = with pkgs; [
|
||||
nerd-fonts.jetbrains-mono
|
||||
twemoji-color-font
|
||||
];
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
fonts.packages = with pkgs; [ nerd-fonts.jetbrains-mono ];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.ratbagd.enable = true;
|
||||
}
|
||||
|
|
@ -13,6 +13,8 @@ in
|
|||
"networkmanager"
|
||||
];
|
||||
hashedPasswordFile = config.sops.secrets."user/password".path;
|
||||
|
||||
# openssh.authorizedKeys.keyFiles = [ config.sops.secrets."user/ssh/authorized" ];
|
||||
};
|
||||
|
||||
nixremote = {
|
||||
|
|
@ -41,6 +43,9 @@ in
|
|||
path = "/home/lilith/.ssh/id_ed25519.pub";
|
||||
owner = "lilith";
|
||||
};
|
||||
"user/ssh/authorized" = {
|
||||
sopsFile = ../../hosts/${host}/secrets/default.yaml;
|
||||
};
|
||||
"ssh/nixremote/private" = {
|
||||
sopsFile = ../../secrets/default.yaml;
|
||||
path = "/root/.ssh/nixremote";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue