aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/adam/configuration.nix11
-rw-r--r--hosts/lilith/configuration.nix21
-rw-r--r--hosts/sachiel/configuration.nix5
3 files changed, 12 insertions, 25 deletions
diff --git a/hosts/adam/configuration.nix b/hosts/adam/configuration.nix
index 7d1481a..84bfd64 100644
--- a/hosts/adam/configuration.nix
+++ b/hosts/adam/configuration.nix
@@ -1,7 +1,4 @@
{
- inputs,
- system,
- host,
pkgs,
username,
...
@@ -12,6 +9,7 @@
./hardware-configuration.nix
../../modules
../../modules/system
+ ../../modules/services
];
boot = {
@@ -45,9 +43,6 @@
hardware.graphics = {
enable = true;
enable32Bit = true;
- extraPackages = with pkgs; [
- amdvlk
- ];
};
environment.variables.AMD_VULKAN_ICD = "RADV";
@@ -69,7 +64,7 @@
xdg-utils
pulsemixer
];
- home.stateVersion = "25.05";
+ home.stateVersion = "25.11";
};
nx = {
@@ -96,5 +91,5 @@
};
};
- system.stateVersion = "25.05";
+ system.stateVersion = "25.11";
}
diff --git a/hosts/lilith/configuration.nix b/hosts/lilith/configuration.nix
index 65127d7..b8e6a20 100644
--- a/hosts/lilith/configuration.nix
+++ b/hosts/lilith/configuration.nix
@@ -16,13 +16,8 @@
networking.hostName = host;
home-manager.users.${username} = {
- imports = [
- inputs.mac-app-util.homeManagerModules.default
- ];
-
home.username = username;
home.homeDirectory = "/Users/${username}";
-
programs.home-manager.enable = true;
home.packages = with pkgs; [
@@ -34,10 +29,14 @@
zathura
zoxide
gemini-cli
+ iterm2
+ rectangle
+ slack
+ podman
nerd-fonts.symbols-only
];
- home.stateVersion = "25.05";
+ home.stateVersion = "25.11";
};
system.primaryUser = username;
@@ -68,15 +67,10 @@
"openjdk@21"
];
casks = [
- "obsidian"
"nextcloud"
"mullvad-vpn"
"bambu-studio"
"arduino-ide"
- "iterm2"
- "docker-desktop"
- "rectangle"
- "slack"
"anki"
];
onActivation.cleanup = "zap";
@@ -90,11 +84,10 @@
zsh.enable = true;
anki.enable = true;
spicetify.enable = true;
- vscode.enable = true;
+ zed-editor.enable = true;
+ obsidian.enable = true;
};
};
-
-
system.stateVersion = 5;
}
diff --git a/hosts/sachiel/configuration.nix b/hosts/sachiel/configuration.nix
index 0a36191..0aa0675 100644
--- a/hosts/sachiel/configuration.nix
+++ b/hosts/sachiel/configuration.nix
@@ -155,7 +155,7 @@
services.nextcloud = {
enable = true;
- package = pkgs.nextcloud31;
+ package = pkgs.nextcloud32;
hostName = "cloud.schererleander.de";
https = true;
database.createLocally = true;
@@ -197,7 +197,7 @@
set -euo pipefail
INSTALL="${pkgs.coreutils}/bin/install"
FIND="${pkgs.findutils}/bin/find"
- MYSQLDUMP="${pkgs.mariadb-client}/bin/mysqldump"
+ MYSQLDUMP="${pkgs.mariadb.client}/bin/mysqldump"
GZIP="${pkgs.gzip}/bin/gzip"
OCC="${lib.getExe config.services.nextcloud.occ}"
@@ -236,7 +236,6 @@
];
};
-
nixpkgs.config.allowUnfree = true;
system.stateVersion = "25.05";
}