More DMS tries

This commit is contained in:
Janne Peltola 2026-02-03 18:20:36 +02:00
parent 6736ad8d5a
commit 8bca8e9be1
2 changed files with 15 additions and 3 deletions

View file

@ -39,7 +39,13 @@
"janne@hermes" = home-manager.lib.homeManagerConfiguration {
# Home-manager requires 'pkgs' instance
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = {inherit inputs;};
extraSpecialArgs = {
inherit inputs;
pkgs-unstable = import nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
};
};
# > Our main home-manager configuration file <
modules = [./home-manager/home.nix];
};

View file

@ -3,11 +3,12 @@
lib,
config,
pkgs,
pkgs-unstable,
...
}: {
imports = [
./wayland.nix
inputs.dms.homeModules.dank-material-shell
inputs.dms.homeModules.dank-material-shell.default
];
nixpkgs = {
@ -55,6 +56,11 @@
programs.zsh.enable = true;
programs.dankMaterialShell = {
enable = true;
quickshell.package = pkgs-unstable.quickshell;
};
# Enable home-manager and git
programs.home-manager.enable = true;