Test
This commit is contained in:
parent
91070de270
commit
32941e6da2
2 changed files with 18 additions and 2 deletions
|
@ -1,6 +1,23 @@
|
|||
{pkgs, ...}: {
|
||||
services.xserver.videoDrivers = ["nvidia"];
|
||||
|
||||
# Greeter, for when you start the computer
|
||||
programs.regreet = {
|
||||
enable = true;
|
||||
# https://github.com/rharish101/ReGreet/blob/main/regreet.sample.toml
|
||||
settings = {
|
||||
background.path = "/etc/nixos/git/wallpapers/gruvbox/wallpaper2.jpg";
|
||||
background.fit = "Contain";
|
||||
GTK.application_prefer_dark_theme = true;
|
||||
GTK.cursor_theme_name = "Adwaita";
|
||||
GTK.font_name = "Cantarell 16";
|
||||
GTK.icon_theme_name = "Adwaita";
|
||||
GTK.theme_name = "Adwaita";
|
||||
commands.reboot = [ "systemctl", "reboot" ];
|
||||
commands.poweroff = [ "systemctl", "poweroff" ];
|
||||
};
|
||||
};
|
||||
|
||||
# Brightness and volume control
|
||||
programs.light.enable = true;
|
||||
|
||||
|
@ -70,7 +87,6 @@
|
|||
font-awesome
|
||||
|
||||
# lock screen
|
||||
swaylock
|
||||
swaylock-fancy
|
||||
];
|
||||
|
||||
|
|
|
@ -186,7 +186,7 @@
|
|||
# Init the wallpaper daemon and set the wallpaper:
|
||||
sww init &
|
||||
#TODO: Set this
|
||||
sww img /etc/nixos/git/desktops/wallpapers/gruvbox/wallpaper1.png &
|
||||
sww img /etc/nixos/git/desktops/wallpapers/gruvbox/wallpaper1.jpg &
|
||||
# Add the network manager applet:
|
||||
nm-applet --indicator &
|
||||
# The bar
|
||||
|
|
Loading…
Reference in a new issue