diff options
author | sefidel <contact@sefidel.net> | 2023-07-25 19:08:05 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-07-25 19:08:05 +0900 |
commit | 747e11903f5c3bb002a913c76583b65eeabf8aa7 (patch) | |
tree | dc4e68772c4deee8b41f15df026ef262f23210ff /home | |
parent | 3f4ffdbbd694a14e6ada58740e6596f475ce00fb (diff) | |
download | nixrc-747e11903f5c3bb002a913c76583b65eeabf8aa7.tar.gz nixrc-747e11903f5c3bb002a913c76583b65eeabf8aa7.zip |
feat(home/cobalt): init
Diffstat (limited to 'home')
-rw-r--r-- | home/configs/cobalt/sefidel.nix | 9 | ||||
-rw-r--r-- | home/default.nix | 14 |
2 files changed, 23 insertions, 0 deletions
diff --git a/home/configs/cobalt/sefidel.nix b/home/configs/cobalt/sefidel.nix new file mode 100644 index 0000000..094c908 --- /dev/null +++ b/home/configs/cobalt/sefidel.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: + +{ + config = { + activeProfiles = [ "base" "development" ]; + + programs.htop.settings.detailed_cpu_time = true; + }; +} diff --git a/home/default.nix b/home/default.nix index 33c3861..2b2f827 100644 --- a/home/default.nix +++ b/home/default.nix @@ -63,4 +63,18 @@ version = "23.05"; }; + + "sefidel@cobalt" = self.lib.mkHome { + username = "sefidel"; + hostname = "cobalt"; + pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim.overlay ]; }; + + extraModules = [ + ./profiles/populate.nix + ./profiles/base + ./profiles/development + ]; + + version = "23.05"; + }; } |