Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot-wxt1221 committed Jan 12, 2025
1 parent 3a8c229 commit eea60f1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
2 changes: 2 additions & 0 deletions home/wxt/programs/more.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@

".cache/dconf"
".config/dconf"
".local/share/flatpak"
".var"
];
files = [ ".wakatime.cfg" ];
};
Expand Down
11 changes: 7 additions & 4 deletions programs/desktop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
niri,
...
}:
let
niri-use = niri.packages.${pkgs.system}.niri-unstable.overrideAttrs (old: {
doCheck = false;
});
in
{
imports = [

Expand All @@ -14,12 +19,10 @@
services.xserver.enable = true;
services.xserver.displayManager.gdm.enable = true;
services.xserver.displayManager.gdm.wayland = true;
services.displayManager.sessionPackages = [ niri.packages.${pkgs.system}.niri-unstable ];
services.displayManager.sessionPackages = [ niri-use ];
environment.systemPackages = with pkgs; [
dconf
(niri.packages.${pkgs.system}.niri-unstable.overrideAttrs (old: {
doCheck = false;
}))
niri-use
gnome-tweaks
gnome-system-monitor
];
Expand Down
8 changes: 8 additions & 0 deletions programs/flatpak.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,12 @@

];
services.flatpak.enable = true;
environment.persistence."/persist".directories = [ "/var/lib/flatpak" ];
systemd.services.flatpak-repo = {
wantedBy = [ "multi-user.target" ];
path = [ pkgs.flatpak ];
script = ''
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
'';
};
}

0 comments on commit eea60f1

Please sign in to comment.