refactor: clean up systems
This commit is contained in:
parent
68d4e2c04c
commit
8c237b9604
3 changed files with 13 additions and 13 deletions
|
@ -5,8 +5,9 @@
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./programs/tailscale.nix
|
./modules/programs/tailscale.nix
|
||||||
./programs/zsh.nix
|
./modules/bootloaders/systemd-boot.nix
|
||||||
|
./modules/programs/zsh.nix
|
||||||
inputs.nix-index-database.nixosModules.nix-index
|
inputs.nix-index-database.nixosModules.nix-index
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
];
|
];
|
||||||
|
@ -87,7 +88,7 @@
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
|
||||||
sops = {
|
sops = {
|
||||||
defaultSopsFile = ../../secrets/secrets.yaml;
|
defaultSopsFile = ../secrets/secrets.yaml;
|
||||||
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
||||||
secrets.password.neededForUsers = true;
|
secrets.password.neededForUsers = true;
|
||||||
};
|
};
|
|
@ -1,13 +1,14 @@
|
||||||
{ inputs, ... }:
|
{ inputs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../themes/cursors/banana-cursor.nix
|
../themes/cursors/banana-cursor.nix
|
||||||
../../themes/darkviolet.nix
|
../themes/darkviolet.nix
|
||||||
../../themes/fonts/sauce-code-pro.nix
|
../themes/fonts/sauce-code-pro.nix
|
||||||
./programs/getty.nix
|
./modules/programs/getty.nix
|
||||||
./programs/hyprland.nix
|
./modules/programs/hyprland.nix
|
||||||
./programs/hyprlock.nix
|
./modules/programs/hyprlock.nix
|
||||||
inputs.stylix.nixosModules.stylix
|
inputs.stylix.nixosModules.stylix
|
||||||
|
./modules/hardware/bluetooth.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable basic fonts for reasonable Unicode coverage
|
# Enable basic fonts for reasonable Unicode coverage
|
|
@ -2,11 +2,9 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hw-nemesis.nix
|
./hw-nemesis.nix
|
||||||
./modules/common.nix
|
./common.nix
|
||||||
./modules/desktop.nix
|
./desktop.nix
|
||||||
./modules/bootloaders/systemd-boot.nix
|
|
||||||
./modules/hardware/nvidia.nix
|
./modules/hardware/nvidia.nix
|
||||||
./modules/hardware/bluetooth.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "nemesis";
|
networking.hostName = "nemesis";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue