commit 8471b5d9e5ec7cddc5d2629228de77f46d9071ac
parent 4404e2195383f0587701f907c7d898ab99783e49
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Thu, 31 Jul 2025 10:46:18 +0200
parent 4404e2195383f0587701f907c7d898ab99783e49
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Thu, 31 Jul 2025 10:46:18 +0200
config: rename `home` to `home-manager`
93 files changed, 53 insertions(+), 40 deletions(-)
R
|
0
R
|
0
R
config/home/zaphyra/programs/libreoffice.nix -> config/home-manager/zaphyra/programs/libreoffice.nix
|
0
R
config/home/zaphyra/programs/nix-cleanup.nix -> config/home-manager/zaphyra/programs/nix-cleanup.nix
|
0
R
|
0
R
config/home/zaphyra/programs/paper-plane.nix -> config/home-manager/zaphyra/programs/paper-plane.nix
|
0
R
config/home/zaphyra/programs/pdfarranger.nix -> config/home-manager/zaphyra/programs/pdfarranger.nix
|
0
R
config/home/zaphyra/programs/thunderbird.nix -> config/home-manager/zaphyra/programs/thunderbird.nix
|
0
diff --git a/config/home/zaphyra/configure/niri.nix b/config/home-manager/zaphyra/configure/niri.nix
diff --git a/config/home/zaphyra/programs/gajim.nix b/config/home-manager/zaphyra/programs/gajim.nix
diff --git a/config/home-manager/zaphyra/programs/helix.nix b/config/home-manager/zaphyra/programs/helix.nix @@ -0,0 +1,38 @@ +{ lib, pkgs, ... }: + +{ + + home = { + # sessionVariables.EDITOR = lib.mkForce "hx"; + }; + + programs.helix = { + enable = true; + settings = { + editor.cursor-shape.insert = "bar"; + editor.bufferline = "always"; + keys.insert."C-t" = "indent"; + keys.insert."C-d" = "unindent"; + theme = "base16_default"; + }; + languages = { + language-server.scls.command = lib.getExe pkgs.unstable.simple-completion-language-server; + language = [ + { + name = "stub"; + scope = "text.stub"; + file-types = [ ]; + shebangs = [ ]; + roots = [ ]; + auto-format = false; + language-servers = [ "scls" ]; + } + ]; + }; + extraPackages = with pkgs; [ + nil + markdown-oxide + ]; + }; + +}
diff --git a/config/home/zaphyra/programs/loupe.nix b/config/home-manager/zaphyra/programs/loupe.nix
diff --git a/config/home/zaphyra/programs/mcfly.nix b/config/home-manager/zaphyra/programs/mcfly.nix
diff --git a/config/home/zaphyra/programs/micro.nix b/config/home-manager/zaphyra/programs/micro.nix
diff --git a/config/home/zaphyra/programs/typst.nix b/config/home-manager/zaphyra/programs/typst.nix
diff --git a/config/home-manager/zaphyra/services/syncthing.nix b/config/home-manager/zaphyra/services/syncthing.nix @@ -0,0 +1,14 @@ +{ config, ... }: + +{ + + services.syncthing = { + enable = true; + + cert = ""; + key = ""; + + settings = {}; + }; + +}
diff --git a/config/home/zaphyra/programs/helix.nix b/config/home/zaphyra/programs/helix.nix @@ -1,39 +0,0 @@ -{ lib, pkgs, ... }: - -{ - - home = { - sessionVariables.EDITOR = lib.mkForce "hx"; - # shellAliases.nano = lib.mkForce "hx"; - }; - - programs.helix = { - enable = true; - settings = { - editor.cursor-shape.insert = "bar"; - editor.bufferline = "always"; - keys.insert."C-t" = "indent"; - keys.insert."C-d" = "unindent"; - theme = "base16_default"; - }; - languages = { - language-server.scls.command = lib.getExe pkgs.unstable.simple-completion-language-server; - language = [ - { - name = "stub"; - scope = "text.stub"; - file-types = [ ]; - shebangs = [ ]; - roots = [ ]; - auto-format = false; - language-servers = [ "scls" ]; - } - ]; - }; - extraPackages = with pkgs; [ - nil - markdown-oxide - ]; - }; - -}
diff --git a/flake.nix b/flake.nix @@ -57,7 +57,7 @@ nixosModules.default = ./config/nixosModules.nix; - homeManagerModules = loadDir pathLoader ./config/home; + homeManagerModules = loadDir pathLoader ./config/home-manager; lib = loadDir (path: path: import path inputs) ./lib;