This commit is contained in:
Nicole 2025-10-29 15:50:43 +01:00
parent 2570055671
commit f9fc318440
2 changed files with 10 additions and 3 deletions

View file

@ -32,9 +32,13 @@
url = "github:sodiboo/niri-flake"; url = "github:sodiboo/niri-flake";
inputs.nixpkgs.follows = "nixpkgs"; 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 let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};

View file

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
./theme.nix ./theme.nix
./dms.nix
]; ];
nixpkgs = { nixpkgs = {
@ -16,9 +17,11 @@
home.homeDirectory = "/home/nicole"; home.homeDirectory = "/home/nicole";
home.stateVersion = "25.11"; # Please read the comment before changing. home.stateVersion = "25.11"; # Please read the comment before changing.
home.packages = with pkgs; [ home.packages = with pkgs; [
#inputs.quickshell.packages.${pkgs.system}.default
]; ];
programs.home-manager.enable = true; programs.home-manager.enable = true;
programs.dankMaterialShell.enable = true; #programs.dankMaterialShell = {
#enable = true;
#quickshell.package = inputs.quickshell.packages.x86_64-linux.default;
#};
} }