Compare commits
3 commits
085088a302
...
d7ad60297d
Author | SHA1 | Date | |
---|---|---|---|
d7ad60297d | |||
84796a92a8 | |||
1581b93d10 |
8 changed files with 45 additions and 26 deletions
|
@ -41,6 +41,7 @@ exec-once = spotify & sleep 5; hyprctl dispatch movetoworkspacesilent special:sp
|
||||||
|
|
||||||
# Some default env vars.
|
# Some default env vars.
|
||||||
env = XCURSOR_SIZE,24
|
env = XCURSOR_SIZE,24
|
||||||
|
exec-once=hyprctl setcursor Dracula-cursors 24
|
||||||
|
|
||||||
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
||||||
input {
|
input {
|
||||||
|
|
BIN
nixos/flake.lock
BIN
nixos/flake.lock
Binary file not shown.
|
@ -17,8 +17,6 @@
|
||||||
|
|
||||||
"org/gnome/desktop/interface" = {
|
"org/gnome/desktop/interface" = {
|
||||||
color-scheme = "prefer-dark";
|
color-scheme = "prefer-dark";
|
||||||
gtk-theme = "Dracula";
|
|
||||||
icon-theme = "Flat-Remix-Violet-Dark";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,26 +1,30 @@
|
||||||
{ config, pkgs, ... }: let
|
{ config, pkgs, ... }: let
|
||||||
configDir = (import ../vars.nix).configDir;
|
configDir = (import ../vars.nix).configDir;
|
||||||
|
symlink = config.lib.file.mkOutOfStoreSymlink;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"swayosd/style.css".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/swayosd/style.css";
|
"swayosd/style.css".source = symlink "${configDir}/swayosd/style.css";
|
||||||
|
|
||||||
"gtklock/config.ini".source = pkgs.writeText "config.ini" ''
|
"gtklock/config.ini".source = pkgs.writeText "config.ini" ''
|
||||||
[main]
|
[main]
|
||||||
modules=${pkgs.gtklock-powerbar-module}/lib/gtklock/powerbar-module.so;${pkgs.gtklock-playerctl-module}/lib/gtklock/playerctl-module.so
|
modules=${builtins.concatStringsSep ";" [
|
||||||
|
"${pkgs.gtklock-powerbar-module}/lib/gtklock/powerbar-module.so"
|
||||||
|
"${pkgs.gtklock-playerctl-module}/lib/gtklock/playerctl-module.so"
|
||||||
|
]}
|
||||||
'';
|
'';
|
||||||
"gtklock/style.css".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/gtklock/style.css";
|
"gtklock/style.css".source = symlink "${configDir}/gtklock/style.css";
|
||||||
|
|
||||||
"ripgrep".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/ripgrep";
|
"ripgrep".source = symlink "${configDir}/ripgrep";
|
||||||
|
|
||||||
"discord/settings.json".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/discord/settings.json";
|
"discord/settings.json".source = symlink "${configDir}/discord/settings.json";
|
||||||
|
|
||||||
"dolphinrc".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/dolphinrc";
|
"dolphinrc".source = symlink "${configDir}/dolphinrc";
|
||||||
"kdeglobals".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/kdeglobals";
|
"kdeglobals".source = symlink "${configDir}/kdeglobals";
|
||||||
"kiorc".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/kiorc";
|
"kiorc".source = symlink "${configDir}/kiorc";
|
||||||
"mimeapps.list".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/mimeapps.list";
|
"mimeapps.list".source = symlink "${configDir}/mimeapps.list";
|
||||||
"neofetch".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/neofetch";
|
"neofetch".source = symlink "${configDir}/neofetch";
|
||||||
"swappy".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/swappy";
|
"swappy".source = symlink "${configDir}/swappy";
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{ pkgs, config, hyprland, hyprgrass, ags, ... }: let
|
{ pkgs, config, hyprland, hyprgrass, ags, ... }: let
|
||||||
configDir = (import ../vars.nix).configDir;
|
configDir = (import ../vars.nix).configDir;
|
||||||
|
symlink = config.lib.file.mkOutOfStoreSymlink;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs.sassc
|
pkgs.sassc
|
||||||
pkgs.flat-remix-icon-theme
|
|
||||||
pkgs.coloryou
|
pkgs.coloryou
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ in
|
||||||
programs.ags = {
|
programs.ags = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = ags.packages.x86_64-linux.default;
|
package = ags.packages.x86_64-linux.default;
|
||||||
configDir = config.lib.file.mkOutOfStoreSymlink "${configDir}/ags";
|
configDir = symlink "${configDir}/ags";
|
||||||
};
|
};
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
|
@ -40,7 +40,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"hypr/main.conf".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/hypr/main.conf";
|
"hypr/main.conf".source = symlink "${configDir}/hypr/main.conf";
|
||||||
"hypr/hyprpaper.conf".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/hypr/hyprpaper.conf";
|
"hypr/hyprpaper.conf".source = symlink "${configDir}/hypr/hyprpaper.conf";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, ... }: let
|
||||||
let
|
|
||||||
# installs a vim plugin from git with a given tag / branch
|
# installs a vim plugin from git with a given tag / branch
|
||||||
plugin = owner: repo: rev: hash: pkgs.vimUtils.buildVimPlugin {
|
plugin = owner: repo: rev: hash: pkgs.vimUtils.buildVimPlugin {
|
||||||
pname = "${lib.strings.sanitizeDerivationName repo}";
|
pname = "${lib.strings.sanitizeDerivationName repo}";
|
||||||
|
@ -9,12 +8,14 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"../.gradle/gradle.properties".source = pkgs.writeText "gradle.properties" ''
|
"../.gradle/gradle.properties".source = pkgs.writeText "gradle.properties" ''
|
||||||
org.gradle.java.home = ${pkgs.temurin-bin-17}
|
org.gradle.java.home = ${pkgs.temurin-bin-17}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.neovim-nightly;
|
package = pkgs.neovim-nightly;
|
||||||
|
@ -67,6 +68,7 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
vim-which-key
|
vim-which-key
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,6 @@
|
||||||
(with gnome; [
|
(with gnome; [
|
||||||
gnome-calculator
|
gnome-calculator
|
||||||
seahorse
|
seahorse
|
||||||
adwaita-icon-theme
|
|
||||||
|
|
||||||
]) ++ [
|
]) ++ [
|
||||||
|
|
||||||
|
@ -91,7 +90,7 @@
|
||||||
virt-manager
|
virt-manager
|
||||||
gradle
|
gradle
|
||||||
gradle-completion # not working
|
gradle-completion # not working
|
||||||
jdk19_headless
|
temurin-bin-17
|
||||||
#camunda-modeler
|
#camunda-modeler
|
||||||
|
|
||||||
protonmail-bridge
|
protonmail-bridge
|
||||||
|
@ -105,8 +104,6 @@
|
||||||
libnotify
|
libnotify
|
||||||
libinput
|
libinput
|
||||||
playerctl
|
playerctl
|
||||||
dracula-theme
|
|
||||||
dracula-icon-theme
|
|
||||||
steam-run
|
steam-run
|
||||||
wineWowPackages.stable
|
wineWowPackages.stable
|
||||||
cabextract
|
cabextract
|
||||||
|
@ -150,7 +147,6 @@
|
||||||
swappy
|
swappy
|
||||||
fontfor
|
fontfor
|
||||||
qt5ct
|
qt5ct
|
||||||
lxappearance
|
|
||||||
imagemagick
|
imagemagick
|
||||||
usbutils
|
usbutils
|
||||||
evtest
|
evtest
|
||||||
|
|
|
@ -1,6 +1,24 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
gtk = {
|
||||||
|
enable = true;
|
||||||
|
theme = {
|
||||||
|
name = "Dracula";
|
||||||
|
package = pkgs.dracula-theme;
|
||||||
|
};
|
||||||
|
|
||||||
|
iconTheme = {
|
||||||
|
name = "Flat-Remix-Violet-Dark";
|
||||||
|
package = pkgs.flat-remix-icon-theme;
|
||||||
|
};
|
||||||
|
|
||||||
|
cursorTheme = {
|
||||||
|
name = "Dracula-cursors";
|
||||||
|
package = pkgs.dracula-icon-theme;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"../.themes/Dracula".source = "${pkgs.dracula-theme}/share/themes/Dracula";
|
"../.themes/Dracula".source = "${pkgs.dracula-theme}/share/themes/Dracula";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue