WIP
This commit is contained in:
19
nixos/hypr.nix
Normal file
19
nixos/hypr.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{pkgs, username, ...}: {
|
||||
|
||||
# enable auto-login
|
||||
#TODO: this should be optional
|
||||
services.getty.autologinUser = username;
|
||||
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
xwayland.enable = true;
|
||||
withUWSM = true;
|
||||
};
|
||||
|
||||
programs.hyprlock.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
kitty
|
||||
hyprpaper
|
||||
];
|
||||
}
|
||||
4
nixos/zsh.nix
Normal file
4
nixos/zsh.nix
Normal file
@@ -0,0 +1,4 @@
|
||||
{pkgs, username, ...}: {
|
||||
programs.zsh.enable = true;
|
||||
users.users.${username}.shell = pkgs.zsh;
|
||||
}
|
||||
Reference in New Issue
Block a user