fmt
This commit is contained in:
parent
f95aae3f8b
commit
9571db9cac
30 changed files with 33 additions and 31 deletions
|
@ -7,10 +7,12 @@
|
|||
in {
|
||||
users.mutableUsers = false;
|
||||
users.users = {
|
||||
root.hashedPassword = user.root.hashedPassword;
|
||||
root = {
|
||||
inherit (user.root) hashedPassword;
|
||||
};
|
||||
"${user.primary.userName}" = {
|
||||
uid = 1000;
|
||||
hashedPassword = user.primary.hashedPassword;
|
||||
inherit (user.primary) hashedPassword;
|
||||
description = user.primary.realName;
|
||||
isNormalUser = true;
|
||||
extraGroups = ["docker" "libvirtd" "networkmanager" "tss" "wheel"];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
imports = [./programs ./services ./wm ./gtk.nix ./persistence.nix];
|
||||
|
||||
home.stateVersion = "23.11";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
home.persistence."/persist/home" = {
|
||||
allowOther = true;
|
||||
directories = [
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.aria2 = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.bat = {
|
||||
enable = true;
|
||||
config = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
xdg.desktopEntries."btop" = {
|
||||
name = "btop++";
|
||||
exec = "btop";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.exa = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.yt-dlp = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
imports = [
|
||||
./aria2c.nix
|
||||
./gpg-agent.nix
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
services = {
|
||||
gpg-agent = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
services.kanshi = {
|
||||
enable = true;
|
||||
systemdTarget = "graphical-session.target";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
virtualisation.oci-containers.containers."adtya.xyz" = {
|
||||
image = "ghcr.io/adtya/adtya.xyz:latest";
|
||||
ports = ["3000:80"];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-partlabel/NIXOS_ROOT";
|
||||
fsType = "btrfs";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs = {
|
||||
zsh = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
security = {
|
||||
apparmor = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{secrets, ...}: {
|
||||
services.caddy = {
|
||||
enable = true;
|
||||
email = secrets.caddy_config.email;
|
||||
inherit (secrets.caddy_config) email;
|
||||
|
||||
virtualHosts."proofs.adtya.xyz" = {
|
||||
extraConfig = ''
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
secrets,
|
||||
...
|
||||
}: let
|
||||
frp_config = secrets.frp_config;
|
||||
inherit (secrets) frp_config;
|
||||
in {
|
||||
systemd.services.frpc = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/vg0/system";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
environment.persistence."/persist/system" = {
|
||||
hideMounts = true;
|
||||
directories = [
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
imports = [
|
||||
./gnupg.nix
|
||||
./neovim.nix
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableExtraSocket = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
boot.initrd.systemd.services.rollback = {
|
||||
description = "Rollback root subvolume to blank state";
|
||||
wantedBy = ["initrd.target"];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{...}: {
|
||||
_: {
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
|
|
Loading…
Reference in a new issue