More DMS tries
This commit is contained in:
parent
6736ad8d5a
commit
8bca8e9be1
2 changed files with 15 additions and 3 deletions
|
|
@ -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];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue