diff options
author | sefidel <contact@sefidel.net> | 2021-12-28 01:11:25 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2021-12-28 01:12:48 +0900 |
commit | 56992b8c945d497a623fe693847c91235be1ae02 (patch) | |
tree | 102ff8c8872d7e14ce3e3dba69bf16685374504e /home/configurations | |
download | nixrc-56992b8c945d497a623fe693847c91235be1ae02.tar.gz nixrc-56992b8c945d497a623fe693847c91235be1ae02.zip |
initial commit
Diffstat (limited to 'home/configurations')
-rw-r--r-- | home/configurations/boopy@alpha.nix | 9 | ||||
-rw-r--r-- | home/configurations/default.nix | 5 |
2 files changed, 14 insertions, 0 deletions
diff --git a/home/configurations/boopy@alpha.nix b/home/configurations/boopy@alpha.nix new file mode 100644 index 0000000..af71030 --- /dev/null +++ b/home/configurations/boopy@alpha.nix @@ -0,0 +1,9 @@ +{ pkgs, nixpkgs, self, ... }: + +{ + config = { + activeProfiles = [ "browsing" "development" "messaging" "misc" ]; + + programs.htop.settings.detailed_cpu_time = true; + }; +} diff --git a/home/configurations/default.nix b/home/configurations/default.nix new file mode 100644 index 0000000..ac44363 --- /dev/null +++ b/home/configurations/default.nix @@ -0,0 +1,5 @@ +{ self, ... } @ inputs: + +{ + "boopy@alpha" = self.lib.mkHome "boopy" "alpha" "x86_64-linux" inputs.nixpkgs "22.05"; +} |