summaryrefslogtreecommitdiff
path: root/configuration.nix
blob: 9c0e07d71cfcc166db6c59272bc00c59e1ecb34a (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
37
38
{ 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
    swaylock

    networkmanagerapplet

    greetd.tuigreet
    greetd.greetd
    polkit_gnome

    libnotify
    libappindicator

    cudatoolkit
  ];

  system.stateVersion = "23.11";
}