From ad7cd4ec04848d52eb2a5d0e9fd38e5411a3d354 Mon Sep 17 00:00:00 2001 From: uku Date: Wed, 30 Aug 2023 11:51:18 +0200 Subject: [PATCH] add hyprland & packages --- configuration.nix | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/configuration.nix b/configuration.nix index 9994719..7ce7ad2 100644 --- a/configuration.nix +++ b/configuration.nix @@ -42,19 +42,6 @@ LC_TIME = "fr_FR.UTF-8"; }; - # Enable the X11 windowing system. - services.xserver.enable = true; - - # Enable the GNOME Desktop Environment. - services.xserver.displayManager.gdm.enable = true; - services.xserver.desktopManager.gnome.enable = true; - - # Configure keymap in X11 - services.xserver = { - layout = "fr"; - xkbVariant = ""; - }; - # Configure console keymap console.keyMap = "fr"; @@ -86,16 +73,26 @@ isNormalUser = true; description = "uku"; extraGroups = [ "networkmanager" "wheel" ]; + shell = pkgs.fish; packages = with pkgs; [ firefox neovim git gnupg pinentry - # thunderbird + kitty + chezmoi + iosevka + jetbrains-mono + starship + waybar + rofi-wayland ]; }; + programs.hyprland.enable = true; + programs.fish.enable = true; + # Allow unfree packages nixpkgs.config.allowUnfree = true;