This commit is contained in:
Michael Thomson 2025-03-10 16:49:25 -04:00
parent 6a570eea8d
commit 3aece1b9fb
3 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,4 @@
{
virtualisation.docker.enable = true;
users.users.mthomson.extraGroups = [ "docker" ];
}

View File

@ -1,10 +1,15 @@
{ pkgs, inputs, ... }:
{
programs.hyprland = {
programs = {
hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
thunar = {
enable = true;
};
};
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}

View File

@ -1,6 +1,7 @@
{pkgs, ...}: {
programs.zsh.enable = true;
users.users.mthomson = {
#shell = pkgs.zsh;
shell = pkgs.zsh;
isNormalUser = true;
description = "Michael Thomson";
extraGroups = ["networkmanager" "wheel"];