From 06da879408f120c476eea0b36a74d246a44853fb Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 8 Apr 2022 16:58:02 -0700 Subject: carmel: configure the desktop properly --- hosts/carmel/default.nix | 4 +++- hosts/carmel/home.nix | 14 ++++++++++++++ hosts/carmel/profile.nix | 5 +++++ 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 hosts/carmel/home.nix create mode 100644 hosts/carmel/profile.nix (limited to 'hosts') 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; +} -- cgit 1.4.1