Initial commit

This commit is contained in:
Aleksandr 2024-08-05 20:53:43 +03:00
commit 38f32e9513
23 changed files with 243 additions and 0 deletions

3
modules/default.nix Normal file
View file

@ -0,0 +1,3 @@
{
modules = [];
}

13
modules/kde/default.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
services.desktopManager.plasma6.enable = true;
services.xserver.xkb.layout = "us";
environment.sessionVariables.NIXOS_OZONE_WL = "1";
environment.plasma6.excludePackages = with pkgs.kdePackages; [
plasma-browser-integration
konsole
oxygen
];
}

6
modules/sops/all.nix Normal file
View file

@ -0,0 +1,6 @@
{
imports = [
./work.nix
./viendesu.nix
];
}

View file

@ -0,0 +1,6 @@
{
sops = {
secrets."shadowsocks/gneg" = {};
secrets."shadowsocks/yor" = {};
};
}

7
modules/sops/work.nix Normal file
View file

@ -0,0 +1,7 @@
{
sops = {
secrets."work/vpn/ovpn" = {};
secrets."work/vpn/shadowsocks" = {};
secrets."work/vpn/password" = {};
};
}

6
modules/users/nero.nix Normal file
View file

@ -0,0 +1,6 @@
{
users.users.nero = {
isNormalUser = true;
uid = 1337;
};
}