diff options
| author | Nantha Sorubakanthan <nantha@mielota.com> | 2026-06-08 13:08:37 +0200 |
|---|---|---|
| committer | Nantha Sorubakanthan <nantha@mielota.com> | 2026-06-08 19:58:30 +0200 |
| commit | 770c0cfc08bd73ada6e7754473d69fe9e2d17dc2 (patch) | |
| tree | 3c1da3053ed03bbdc2e8c4e4fbf26947b7ef97ae /nixos/configuration.nix | |
| parent | 218a690b155d9e7d47bb2e7487a150c16c8f482f (diff) | |
rewrite config in nix
Diffstat (limited to 'nixos/configuration.nix')
| -rw-r--r-- | nixos/configuration.nix | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 19ee914..ec28c7d 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -18,6 +18,8 @@ i18n.defaultLocale = "fr_FR.UTF-8"; + environment.pathsToLink = [ "/share/applications" "/share/xdg-desktop-portal" ]; + console = { font = "Lat2-Terminus16"; keyMap = "fr"; @@ -37,11 +39,6 @@ #services.getty.autologinUser = "nantha"; - programs.hyprland = { - enable = true; - xwayland.enable = true; - }; - users.users.nantha = { isNormalUser = true; extraGroups = [ "wheel" ]; @@ -49,23 +46,22 @@ }; environment.systemPackages = with pkgs; [ - brightnessctl - xdg-user-dirs - alsa-utils - alsa-tools - bibata-cursors + brightnessctl + alsa-utils + alsa-tools + bibata-cursors ]; hardware.firmware = with pkgs; [ - linux-firmware - sof-firmware - alsa-firmware + linux-firmware + sof-firmware + alsa-firmware ]; fonts = { enableDefaultPackages = true; packages = with pkgs; [ - nerd-fonts._0xproto + nerd-fonts._0xproto ]; }; |
