summaryrefslogtreecommitdiff
path: root/configuration.nix
blob: d27eca69de686cf8022711f22fa7f619dbe5180f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ config, pkgs, ... }:

{
  imports = [
    ./hardware-configuration.nix
    ./OwO.nix
    ./home.nix
    ./desktop.nix
  ];

  nix.settings.experimental-features = [ "nix-command" "flakes" ];
  nixpkgs.config.allowUnfree = true;

  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;

  environment.systemPackages = with pkgs; [
    waybar
    fuzzel
    dunst
    hyprpaper
    waylock

    networkmanagerapplet

    greetd.tuigreet
    greetd.greetd
    polkit_gnome

    libnotify
    libappindicator
  ];

  system.stateVersion = "23.11";
}