diff options
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"; +} |