Skip to content

Instantly share code, notes, and snippets.

@AntonFriberg
Last active March 10, 2025 06:13
Show Gist options
  • Save AntonFriberg/1dcb1ee6bf2c92c5f641a6f764d582d9 to your computer and use it in GitHub Desktop.
Save AntonFriberg/1dcb1ee6bf2c92c5f641a6f764d582d9 to your computer and use it in GitHub Desktop.
How to install and configure a basic Hyprland setup on Ubuntu 24.04 using Nix and Home Manager

Hyprland on Ubuntu 24.04

Hyprland is not available by default on Ubuntu 24.04 so instead we can utilize the Nix package manager and Home Manager.

Nix

The benefit of the Nix package manager compared to others in this case is that the package and dependencies of Nix packages is immutable and self contained. This means that the entire setup is contained to a separate /nix path. Changes to Nix packages does not break Ubuntu and changes to Ubuntu does not break Nix packages.

To install Nix we use the excellent Determinate Nix Installer from Determinate Systems.

sudo apt-get install -y curl
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install

With Nix installed you can run the following to make sure that everything is working correctly.

# Should output Hello, world!
nix run 'nixpkgs#hello'

Home Manager

In addition to Nix we will also be using Home Manager to have a declarative system. With Home Manager we can specify everything we need in configuration files and let it handle the setup and installation for us.

Before we install it we need to setup the configuration files in our home catalog.

mkdir -p ~/.config/home-manager
touch ~/.config/home-manager/flake.nix
touch ~/.config/home-manager/home.nix

~/.config/home-manager/flake.nix

Note: replace antonfr with your own username.

{
  description = "Home Manager Configuration";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    home-manager = {
      url = "github:nix-community/home-manager";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    nixGL = {
      url = "github:nix-community/nixGL";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = {
    self,
    nixpkgs,
    home-manager,
    nixGL,
    ...
  }: {
    # Replace with your own username
    homeConfigurations."antonfr" = home-manager.lib.homeManagerConfiguration {
      pkgs = import nixpkgs {
        system = "x86_64-linux";
        config = {
          allowUnfree = true;
          allowUnfreePredicate = _: true;
        };
      };
      extraSpecialArgs = {
        inherit nixGL;
      };
      modules = [./home.nix];
    };
  };
}

~/.config/home-manager/home.nix

Note: replace antonfr with your own username.

{
  config,
  pkgs,
  lib,
  inputs,
  nixGL,
  ...
}: {
  nixGL = {
    packages = nixGL.packages; # you must set this or everything will be a noop
    defaultWrapper = "mesa"; # choose from nixGL options depending on GPU
  };

  home = {
    username = "antonfr";
    homeDirectory = "/home/antonfr";
    stateVersion = "23.11";
    packages = with pkgs; [
      (config.lib.nixGL.wrap alacritty)
    ];
  };

  programs.home-manager.enable = true;

  xdg.configFile."environment.d/envvars.conf".text = ''
    PATH="$HOME/.nix-profile/bin:$PATH"
  '';

  wayland.windowManager.hyprland = {
    enable = true;
    package = config.lib.nixGL.wrap pkgs.hyprland;
    settings = {
      general = {
        gaps_in = 0;
        gaps_out = 0;
        border_size = 20;
      };
    };
  };
}

Then to install everything.

# Activate a nix shell with latest home-manager from github
$ nix shell github:nix-community/home-manager
# Check that home-manager exists in the activated shell
$ home-manager --version
24.11
# Install your home-manager flake using home-manager
$ home-manager switch --flake ~/.config/home-manager
Starting Home Manager activation
...
# home-manager is now installed even outside the nix shell
$ exit
$ home-manager --version
24.11
# We also have our other packages available
$ which Hyprland
/home/antonfr/.nix-profile/bin/Hyprland

Add Hyprland to Gnome Login (GDM)

To add our Hyprland installation to Gnome Login screen you can add the following file.

/usr/share/wayland-sessions/hyprland.desktop

Note: replace antonfr with your own username.

[Desktop Entry]
Name=Hyprland
Comment=An intelligent dynamic tiling Wayland compositor
Exec=/home/antonfr/.nix-profile/bin/Hyprland
Type=Application

Update Nix, Home Manager and Hyprland

To update everything you need the following commands.

# Update nix
$ sudo -i nix upgrade-nix
# Update Home Manager & Hyprland lock file
$ nix flake update --flake ~/.config/home-manager
# Upgrade Home Manager & Hyprland
$ home-manager switch --flake ~/.config/home-manager

Uninstall

This is one of best features of Nix and it extends to Home-Manager as well. To uninstall we basically only need to do

$ sudo rm -rf /nix

That is it.

However, there will be some stuff left over such as groups, temporary files, shell profile configurations, and other minor stuff. A better way to uninstall Nix is to use the Determinate Installer that I recommend you use to install Nix.

$ /nix/nix-installer uninstall
Nix uninstall plan (v0.27.0)

Planner: linux

Configured settings:
* nix_build_group_id: 30001

Planned actions:
* Remove upstream Nix daemon service
* Remove the directory `/etc/tmpfiles.d` if no other contents exists
* Unconfigure the shell profiles
* Remove the Nix configuration in `/etc/nix/nix.conf`
* Unset the default Nix profile
* Remove Nix users and group
* Remove the directory tree in `/nix`
* Remove the directory `/nix`


Proceed? ([Y]es/[n]o/[e]xplain):

This removes everything properly, including all files created in home catalog by Home Manager! Full cleanup of your configurations and the applications themselves in a single command!

It does not remove local state, cache or temporary files which are unique for each application and version. This is left up to the user. But this fact also allows us to do something pretty nifty.

# Uninstall everything
$ /nix/nix-installer uninstall
# Reinstall Nix
$ curl -L https://install.determinate.systems/nix | sh -s -- install
# Recreate the entire setup back again
$ nix run "nixpkgs#home-manager" -- switch --flake ~/.config/home-manager

The above makes it pretty fool-proof if you ever manage to break Nix or Home-Manager setup in any way. Simply tear everything down and recreate it.

@sigilante
Copy link

Note that upstream nixgl.nix from Smona appears to have changed and thus the sha256 argument has changed. You can get the current sha256 using this command:

nix-prefetch-url https://raw.githubusercontent.com/Smona/home-manager/nixgl-compat/modules/misc/nixgl.nix

@trevorndlovu
Copy link

Good day

i got the path from the command given above by sidilante, how do i procced

Below is the output from the command;
trevor on RiBaySvr at 󰋜 ~ nix-prefetch-url https://raw.githubusercontent.com/Smona/home-manager/nixgl-compat/modules/misc/nixgl.nix
path is '/nix/store/vdx8xh93mbrf0kk36bcdwcqalyzqw3b8-nixgl.nix'
01dkfr9wq3ib5hlyq9zq662mp0jl42fw3f6gd2qgdf8l8ia78j7i

@nfcrugby
Copy link

nfcrugby commented Nov 4, 2024

Hi Anton, I followed this procedure and everything went ok until I got to this point:

@nfcrugby
Copy link

nfcrugby commented Nov 4, 2024

Install your home-manager flake using home-manager

$ home-manager switch --flake ~/.config/home-manager
Then I got the following error messages:

error: syntax error, unexpected ID, expecting '.' or '='
at /nix/store/8irh0rdzl4pvh1hrgf5m13sw8ijlfldf-source/flake.nix:10:5:
9| };
10| t nixGL = {
| ^
11| url = "github:nix-community/nixGL/310f8e49a149e4c9ea52f1adf70cdc768ec53f8a";
error: syntax error, unexpected ID, expecting '.' or '='
at /nix/store/8irh0rdzl4pvh1hrgf5m13sw8ijlfldf-source/flake.nix:10:5:
9| };
10| t nixGL = {
| ^
11| url = "github:nix-community/nixGL/310f8e49a149e4c9ea52f1adf70cdc768ec53f8a";
error: syntax error, unexpected ID, expecting '.' or '='
at /nix/store/8irh0rdzl4pvh1hrgf5m13sw8ijlfldf-source/flake.nix:10:5:
9| };
10| t nixGL = {
| ^
11| url = "github:nix-community/nixGL/310f8e49a149e4c9ea52f1adf70cdc768ec53f8a";
error: syntax error, unexpected ID, expecting '.' or '='
at /nix/store/8irh0rdzl4pvh1hrgf5m13sw8ijlfldf-source/flake.nix:10:5:
9| };
10| t nixGL = {
| ^
11| url = "github:nix-community/nixGL/310f8e49a149e4c9ea52f1adf70cdc768ec53f8a";
Can you help? Much appreciated

@AntonFriberg
Copy link
Author

@sigilante @trevorndlovu @nfcrugby Updated the flake.nix and home.nix with changes after the upstream Home Manager PR was merged. Feel free to have a look.

I am not maintaining this actively just thought that it was interesting to put up a minimal setup since I thought that was missing when I looked around myself and tried to understand how everything fits together. If you are interesting my full setup is available here https://github.com/AntonFriberg/dotfiles

@Shinzu
Copy link

Shinzu commented Dec 3, 2024

heya,

thank you for this howto.

When i try this i get following error while home-manager switch --flake ~/.config/home-manager:

shinzu@shinzu-Blade:~$ home-manager switch --flake ~/.config/home-manager
error:
       … while calling the 'derivationStrict' builtin
         at <nix/derivation-internal.nix>:34:12:
           33|
           34|   strict = derivationStrict drvAttrs;
             |            ^
           35|

       … while evaluating derivation 'home-manager-generation'
         whose name attribute is located at /nix/store/b28k4i7dss8picqr05pix5wv62qc0h8y-source/pkgs/stdenv/generic/make-derivation.nix:336:7

       … while evaluating attribute 'buildCommand' of derivation 'home-manager-generation'
         at /nix/store/b28k4i7dss8picqr05pix5wv62qc0h8y-source/pkgs/build-support/trivial-builders/default.nix:59:17:
           58|         enableParallelBuilding = true;
           59|         inherit buildCommand name;
             |                 ^
           60|         passAsFile = [ "buildCommand" ]

       … while evaluating the option `home.activation.checkFilesChanged.data':

       … while evaluating definitions from `/nix/store/6wraakcndq5ha9y6wkxxkh2x3nqrmssj-source/modules/files.nix':

       … while evaluating the option `home.file."/home/shinzu/.config/hypr/hyprland.conf".onChange':

       … while evaluating definitions from `/nix/store/6wraakcndq5ha9y6wkxxkh2x3nqrmssj-source/modules/misc/xdg.nix':

       … while evaluating the option `xdg.configFile."hypr/hyprland.conf".onChange':

       … while evaluating definitions from `/nix/store/6wraakcndq5ha9y6wkxxkh2x3nqrmssj-source/modules/services/window-managers/hyprland.nix':

       (stack trace truncated; use '--show-trace' to show the full, detailed trace)

       error: attribute 'currentTime' missing
       at /nix/store/wnf3rly6jbw4ywqhzgn0vl6lk8hwgkg3-source/nixGL.nix:223:18:
          222|           # Add an impure parameter to force the rebuild on each access.
          223|           time = builtins.currentTime;
             |                  ^
          224|           preferLocalBuild = true;

I am new to nix and have no idea what here could be the problem, thanks again.

@danie-dejager
Copy link

How do I configure stuff like keybindings and add modules? I logged in but there's only a background with a new mouse cursor.

@AntonFriberg
Copy link
Author

How do I configure stuff like keybindings and add modules? I logged in but there's only a background with a new mouse cursor.

You either configure it like normal (follow the master tutorial https://wiki.hyprland.org/Getting-Started/Master-Tutorial/ or look at https://github.com/hyprwm/Hyprland/blob/main/example/hyprland.conf) or you can configure it using Home Manager and Nix.

I do the later and you can find my configuration here https://github.com/AntonFriberg/dotfiles/blob/4d2eb85775a7c99afe3f1d83bd94f2f3a1948338/modules/gui/hyprland.nix

@jayv
Copy link

jayv commented Mar 9, 2025

   error: attribute 'currentTime' missing
   at /nix/store/wnf3rly6jbw4ywqhzgn0vl6lk8hwgkg3-source/nixGL.nix:223:18:
      222|           # Add an impure parameter to force the rebuild on each access.
      223|           time = builtins.currentTime;
         |                  ^
      224|           preferLocalBuild = true;

@Shinzu I ran into the same issue with defaultWrapper = "nvidiaPrime"; , this choice creates 2 problems, the flake becomes impure and nvidia is non-free software.

What worked for me was to add a file .config/nixpkgs/config.nix

{
  allowUnfree = true;
  allowUnfreePredicate = pkg: true;
}

and then run the command with --impure :

home-manager switch --flake ~/.config/home-manager --impure

@LukeDearden
Copy link

Hi, Thanks for sharing this!

I have one problem that stops me switching over. I rely on nm-applet to connect to a Cisco Anyconnect VPN for work, but for some reason the login window does not render at all.

It works fine on the JaKooLit non-nix 24.04 Hyprland install and under Gnome.

I think It's something to do with WEBKIT or GTK and have tried some environment variables but nothing seems to help

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment