summaryrefslogtreecommitdiff
path: root/modules/nixos/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/profiles')
-rw-r--r--modules/nixos/profiles/default.nix8
-rw-r--r--modules/nixos/profiles/dev/containers.nix10
-rw-r--r--modules/nixos/profiles/dev/default.nix10
-rw-r--r--modules/nixos/profiles/headful.nix8
-rw-r--r--modules/nixos/profiles/headless.nix8
5 files changed, 26 insertions, 18 deletions
diff --git a/modules/nixos/profiles/default.nix b/modules/nixos/profiles/default.nix
index 2027758..93c46e3 100644
--- a/modules/nixos/profiles/default.nix
+++ b/modules/nixos/profiles/default.nix
@@ -4,9 +4,11 @@
pkgs,
...
}:
-with lib; let
+with lib;
+let
cfg = config.nixfiles.modules.profiles.default;
-in {
+in
+{
imports = [
./dev
./headful.nix
@@ -14,7 +16,7 @@ in {
];
config = mkIf cfg.enable {
- ark.directories = ["/var/log"];
+ ark.directories = [ "/var/log" ];
programs.less = {
enable = true;
diff --git a/modules/nixos/profiles/dev/containers.nix b/modules/nixos/profiles/dev/containers.nix
index 67754c0..d2a7d62 100644
--- a/modules/nixos/profiles/dev/containers.nix
+++ b/modules/nixos/profiles/dev/containers.nix
@@ -4,9 +4,11 @@
pkgs,
...
}:
-with lib; let
+with lib;
+let
cfg = config.nixfiles.modules.profiles.dev.containers;
-in {
+in
+{
config = mkIf cfg.enable {
nixfiles.modules = {
common.shell.aliases.b = "buildah";
@@ -17,10 +19,10 @@ in {
home = {
sessionVariables.MINIKUBE_HOME = "${config.dirs.config}/minikube";
- packages = with pkgs; [buildah];
+ packages = with pkgs; [ buildah ];
};
- xdg.dataFile."minikube/config/config.json".text = generators.toJSON {} {
+ xdg.dataFile."minikube/config/config.json".text = generators.toJSON { } {
config.Rootless = true;
driver = "podman";
container-runtime = "cri-o";
diff --git a/modules/nixos/profiles/dev/default.nix b/modules/nixos/profiles/dev/default.nix
index 5253e95..d2411ea 100644
--- a/modules/nixos/profiles/dev/default.nix
+++ b/modules/nixos/profiles/dev/default.nix
@@ -4,12 +4,12 @@
pkgs,
...
}:
-with lib; let
+with lib;
+let
cfg = config.nixfiles.modules.profiles.dev;
-in {
- imports = [
- ./containers.nix
- ];
+in
+{
+ imports = [ ./containers.nix ];
config = mkIf cfg.enable {
hm.home.language = {
diff --git a/modules/nixos/profiles/headful.nix b/modules/nixos/profiles/headful.nix
index d8e1699..8206aa8 100644
--- a/modules/nixos/profiles/headful.nix
+++ b/modules/nixos/profiles/headful.nix
@@ -4,9 +4,11 @@
pkgs,
...
}:
-with lib; let
+with lib;
+let
cfg = config.nixfiles.modules.profiles.headful;
-in {
+in
+{
config = mkIf cfg.enable {
nixfiles.modules = {
chromium.enable = true;
@@ -77,7 +79,7 @@ in {
psd.enable = true;
};
- environment.systemPackages = with pkgs; [lm_sensors];
+ environment.systemPackages = with pkgs; [ lm_sensors ];
my.extraGroups = [
"audio"
diff --git a/modules/nixos/profiles/headless.nix b/modules/nixos/profiles/headless.nix
index d1fcfa4..f3f3572 100644
--- a/modules/nixos/profiles/headless.nix
+++ b/modules/nixos/profiles/headless.nix
@@ -4,9 +4,11 @@
pkgs,
...
}:
-with lib; let
+with lib;
+let
cfg = config.nixfiles.modules.profiles.headless;
-in {
+in
+{
config = mkIf cfg.enable {
nixfiles.modules = {
openssh.server.enable = true;
@@ -33,7 +35,7 @@ in {
optimise = {
automatic = true;
- dates = ["daily"];
+ dates = [ "daily" ];
};
};