Initial commit (after fork)

This commit is contained in:
Pedro Rey Anca 2024-07-08 18:00:42 +02:00
parent 5ebba8a939
commit 5fe3f69a17
111 changed files with 1428 additions and 1611 deletions

View file

@ -1,5 +1,8 @@
{ inputs, pkgs, ... }:
{
inputs,
pkgs,
...
}: {
programs.hyprland.enable = true;
xdg.portal = {
enable = true;
@ -14,4 +17,12 @@
environment.systemPackages = with pkgs; [
# xwaylandvideobridge
];
# Display manager
programs.regreet = {
enable = true;
settings = {
background.path = pkgs.nixos-artwork.wallpapers.simple-dark-gray-bottom.gnomeFilePath;
};
};
}