summaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/configuration.nix b/configuration.nix
deleted file mode 100644
index 9c0e07d..0000000
--- a/configuration.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ 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";
-}
-