aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/carmel/default.nix4
-rw-r--r--hosts/carmel/home.nix14
-rw-r--r--hosts/carmel/profile.nix5
3 files changed, 22 insertions, 1 deletions
diff --git a/hosts/carmel/default.nix b/hosts/carmel/default.nix
index d3b7cf3..87ad97d 100644
--- a/hosts/carmel/default.nix
+++ b/hosts/carmel/default.nix
@@ -1,11 +1,13 @@
{ config, pkgs, hostname, ... }:
{
- imports = [ # Include the results of the hardware scan.
+ imports = [
./hardware.nix
./boot.nix
./sound.nix
./networking.nix
+ ./home.nix
+ ./profile.nix
];
hardware.opengl.driSupport = true;
diff --git a/hosts/carmel/home.nix b/hosts/carmel/home.nix
new file mode 100644
index 0000000..eaf3185
--- /dev/null
+++ b/hosts/carmel/home.nix
@@ -0,0 +1,14 @@
+{ pkgs, ... }:
+
+{
+ my.home = {
+ packages.enable = true;
+ fish.enable = true;
+ git.enable = true;
+ go.enable = true;
+ python.enable = true;
+ scanner.enable = true;
+ tmux.enable = true;
+ yt-dlp.enable = true;
+ };
+}
diff --git a/hosts/carmel/profile.nix b/hosts/carmel/profile.nix
new file mode 100644
index 0000000..6174a60
--- /dev/null
+++ b/hosts/carmel/profile.nix
@@ -0,0 +1,5 @@
+{ ... }:
+
+{
+ my.profiles.desktop.enable = true;
+}