summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-01-31 22:02:28 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2024-01-31 22:02:28 +0530
commit01bb0877c285383fd2857920048bd2576f4d31e9 (patch)
treeb6f26596f1051baf5b791450d6158a69363f6c76 /config
parent578dd91bd1af79b256166ecf797344611790e267 (diff)
restructure
Diffstat (limited to '')
-rw-r--r--config/.fdignore (renamed from .fdignore)0
-rw-r--r--config/.tmux.conf (renamed from .tmux.conf)0
-rw-r--r--config/alacritty/default.nix11
-rw-r--r--config/themes.nix25
-rw-r--r--configuration.nix38
5 files changed, 36 insertions, 38 deletions
diff --git a/.fdignore b/config/.fdignore
index 44ba588..44ba588 100644
--- a/.fdignore
+++ b/config/.fdignore
diff --git a/.tmux.conf b/config/.tmux.conf
index 94169b0..94169b0 100644
--- a/.tmux.conf
+++ b/config/.tmux.conf
diff --git a/config/alacritty/default.nix b/config/alacritty/default.nix
new file mode 100644
index 0000000..af272ef
--- /dev/null
+++ b/config/alacritty/default.nix
@@ -0,0 +1,11 @@
+{ pkgs, config, ... }:
+
+{
+ programs.git = {
+ enable = true;
+ userName = "Raghuram Subramani";
+ userEmail = "raghus2247@gmail.com";
+ };
+
+ programs.alacritty.enable = true;
+}
diff --git a/config/themes.nix b/config/themes.nix
new file mode 100644
index 0000000..a0b20f5
--- /dev/null
+++ b/config/themes.nix
@@ -0,0 +1,25 @@
+{ home, pkgs, ... }:
+
+{
+ home.pointerCursor = {
+ gtk.enable = true;
+ package = pkgs.bibata-cursors;
+ name = "Bibata-Modern-Classic";
+ size = 16;
+ };
+
+ gtk = {
+ enable = true;
+
+ theme = { name = "adw-gtk3-dark"; package = pkgs.adw-gtk3; };
+ iconTheme = { name = "Papirus-Dark"; package = pkgs.papirus-icon-theme; };
+
+ font = { name = "UbuntuMono Nerd Font"; };
+ };
+
+ qt = {
+ enable = true;
+ platformTheme = "gtk";
+ style.name = "adwaita-dark";
+ };
+}
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";
-}
-