aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-03-04 15:02:31 -0800
committerFranck Cuny <franck@fcuny.net>2024-03-04 15:02:31 -0800
commite2f467882f9fd67805b69e5dff6c1652d4c47629 (patch)
tree500206b90fe6d81b44a8a9cbe78d2fe5becafd1b
parentcreate profiles for home-manager (diff)
downloadinfra-e2f467882f9fd67805b69e5dff6c1652d4c47629.tar.gz
move all home-manager settings under the profiles
-rw-r--r--nix/profiles/home-manager/dev.nix (renamed from home/dev.nix)0
-rw-r--r--nix/profiles/home-manager/firefox.nix (renamed from home/firefox.nix)0
-rw-r--r--nix/profiles/home-manager/git.nix (renamed from home/git.nix)2
-rw-r--r--nix/profiles/home-manager/personal.nix10
-rw-r--r--nix/profiles/home-manager/ssh.nix (renamed from home/ssh.nix)0
-rw-r--r--nix/profiles/home-manager/zsh.nix (renamed from home/zsh.nix)0
6 files changed, 6 insertions, 6 deletions
diff --git a/home/dev.nix b/nix/profiles/home-manager/dev.nix
index e0ca68b..e0ca68b 100644
--- a/home/dev.nix
+++ b/nix/profiles/home-manager/dev.nix
diff --git a/home/firefox.nix b/nix/profiles/home-manager/firefox.nix
index a982a2e..a982a2e 100644
--- a/home/firefox.nix
+++ b/nix/profiles/home-manager/firefox.nix
diff --git a/home/git.nix b/nix/profiles/home-manager/git.nix
index 4fbbbb9..ce9c0a9 100644
--- a/home/git.nix
+++ b/nix/profiles/home-manager/git.nix
@@ -1,7 +1,7 @@
{ lib, pkgs, config, ... }:
let
sshPub = builtins.fromTOML (
- builtins.readFile ../configs/ssh-pubkeys.toml
+ builtins.readFile ../../../configs/ssh-pubkeys.toml
);
in
{
diff --git a/nix/profiles/home-manager/personal.nix b/nix/profiles/home-manager/personal.nix
index 9072d63..5beb11e 100644
--- a/nix/profiles/home-manager/personal.nix
+++ b/nix/profiles/home-manager/personal.nix
@@ -3,11 +3,11 @@
home.stateVersion = "23.05";
imports = [
- ../../../home/dev.nix
- ../../../home/firefox.nix
- ../../../home/git.nix
- ../../../home/ssh.nix
- ../../../home/zsh.nix
+ ./dev.nix
+ ./firefox.nix
+ ./git.nix
+ ./ssh.nix
+ ./zsh.nix
];
home.packages = with pkgs; [
diff --git a/home/ssh.nix b/nix/profiles/home-manager/ssh.nix
index 47aee8a..47aee8a 100644
--- a/home/ssh.nix
+++ b/nix/profiles/home-manager/ssh.nix
diff --git a/home/zsh.nix b/nix/profiles/home-manager/zsh.nix
index e704870..e704870 100644
--- a/home/zsh.nix
+++ b/nix/profiles/home-manager/zsh.nix