Update
This commit is contained in:
parent
2570055671
commit
f9fc318440
2 changed files with 10 additions and 3 deletions
|
|
@ -32,9 +32,13 @@
|
|||
url = "github:sodiboo/niri-flake";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
quickshell = {
|
||||
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, home-manager, stylix, dgop, dms-cli, dankMaterialShell, niri, ... }:
|
||||
outputs = { nixpkgs, home-manager, stylix, dgop, dms-cli, dankMaterialShell, niri, quickshell, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
{
|
||||
imports = [
|
||||
./theme.nix
|
||||
./dms.nix
|
||||
];
|
||||
|
||||
nixpkgs = {
|
||||
|
|
@ -16,9 +17,11 @@
|
|||
home.homeDirectory = "/home/nicole";
|
||||
home.stateVersion = "25.11"; # Please read the comment before changing.
|
||||
home.packages = with pkgs; [
|
||||
#inputs.quickshell.packages.${pkgs.system}.default
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
programs.dankMaterialShell.enable = true;
|
||||
#programs.dankMaterialShell = {
|
||||
#enable = true;
|
||||
#quickshell.package = inputs.quickshell.packages.x86_64-linux.default;
|
||||
#};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue