Configure neovide

This commit is contained in:
DashieTM 2024-09-01 01:34:02 +02:00
parent 34d6f22b61
commit 74e9eb2c62
4 changed files with 49 additions and 14 deletions

View file

@ -20,19 +20,31 @@
vscodium
firefox
kitty
gnome-disk-utility
];
networking = {
wireless.enable = false;
networkmanager.enable = true;
};
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
services.greetd = {
enable = true;
settings = {
initial_session = {
command = "${pkgs.hyprland}/bin/Hyprland";
user = "nixos";
# gnome is a good default that works with every gpu and doesn't require knowledge about custom keybinds.
services = {
xserver = {
enable = true;
displayManager = {
gdm.enable = true;
};
desktopManager = {
gnome.enable = true;
};
};
displayManager.autoLogin = {
enable = true;
user = "nixos";
};
};