Merge branch 'desktop' into laptop
This commit is contained in:
commit
459c627de4
28
flake.lock
28
flake.lock
|
@ -1,5 +1,20 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
|
"catppuccin": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1720472194,
|
||||||
|
"narHash": "sha256-CYscFEts6tyvosc1T29nxhzIYJAj/1CCEkV3ZMzSN/c=",
|
||||||
|
"owner": "catppuccin",
|
||||||
|
"repo": "nix",
|
||||||
|
"rev": "d75d5803852fb0833767dc969a4581ac13204e22",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "catppuccin",
|
||||||
|
"repo": "nix",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"flake-compat": {
|
"flake-compat": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -38,11 +53,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1720957393,
|
"lastModified": 1721379653,
|
||||||
"narHash": "sha256-oedh2RwpjEa+TNxhg5Je9Ch6d3W1NKi7DbRO1ziHemA=",
|
"narHash": "sha256-8MUgifkJ7lkZs3u99UDZMB4kbOxvMEXQZ31FO3SopZ0=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "693bc46d169f5af9c992095736e82c3488bf7dbb",
|
"rev": "1d9c2c9b3e71b9ee663d11c5d298727dace8d374",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -54,6 +69,7 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"catppuccin": "catppuccin",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"spicetify-nix": "spicetify-nix"
|
"spicetify-nix": "spicetify-nix"
|
||||||
|
@ -67,11 +83,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1721103144,
|
"lastModified": 1721448793,
|
||||||
"narHash": "sha256-vHGUl/kagv0/QsPXMW+caSPyuvHvMUJSV80cbe+0/2M=",
|
"narHash": "sha256-k3gP2K58IkxRZRbr17gNkIo36YnjBFmmokm6G2GC2yw=",
|
||||||
"owner": "Gerg-L",
|
"owner": "Gerg-L",
|
||||||
"repo": "spicetify-nix",
|
"repo": "spicetify-nix",
|
||||||
"rev": "085ddf8abc78a7f1682c99715584e8735f4903cf",
|
"rev": "f244c6e512a4ca4211414c2c37f5f7516cfbab24",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
21
flake.nix
21
flake.nix
|
@ -13,19 +13,29 @@
|
||||||
url = "github:Gerg-L/spicetify-nix";
|
url = "github:Gerg-L/spicetify-nix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
catppuccin.url = "github:catppuccin/nix";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
{ home-manager, nixpkgs, ... }@inputs:
|
{
|
||||||
|
home-manager,
|
||||||
|
nixpkgs,
|
||||||
|
catppuccin,
|
||||||
|
...
|
||||||
|
}@inputs:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations."nixos" =
|
nixosConfigurations."wizdesk" =
|
||||||
let
|
let
|
||||||
specialArgs = inputs;
|
specialArgs = inputs;
|
||||||
modules = [ ./nixos.nix ];
|
modules = [
|
||||||
|
./nixos.nix
|
||||||
|
catppuccin.nixosModules.catppuccin
|
||||||
|
];
|
||||||
in
|
in
|
||||||
nixpkgs.lib.nixosSystem { inherit system specialArgs modules; };
|
nixpkgs.lib.nixosSystem { inherit system specialArgs modules; };
|
||||||
|
|
||||||
|
@ -33,7 +43,10 @@
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
|
||||||
extraSpecialArgs = inputs;
|
extraSpecialArgs = inputs;
|
||||||
modules = [ ./home-manager.nix ];
|
modules = [
|
||||||
|
./home-manager.nix
|
||||||
|
catppuccin.homeManagerModules.catppuccin
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
formatter."${system}" = pkgs.nixfmt-rfc-style;
|
formatter."${system}" = pkgs.nixfmt-rfc-style;
|
||||||
|
|
|
@ -19,6 +19,8 @@
|
||||||
./programs/spotify
|
./programs/spotify
|
||||||
./programs/tmux
|
./programs/tmux
|
||||||
./programs/waybar.nix
|
./programs/waybar.nix
|
||||||
|
# Enable catppuccin theme everywhere
|
||||||
|
./theming/catppuccin.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Home Manager needs a bit of information about you and the paths it should
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
|
@ -166,35 +168,11 @@
|
||||||
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||||||
# plain files is through 'home.file'.
|
# plain files is through 'home.file'.
|
||||||
home.file = {
|
home.file = {
|
||||||
# Cattpuccin theme for fish shell.
|
|
||||||
".config/fish/themes/Catppuccin-Frappe.theme".source = ./programs/fish/Catppuccin-Frappe.theme;
|
|
||||||
|
|
||||||
# Configuration for gamemode, for running games with optimizations.
|
# Configuration for gamemode, for running games with optimizations.
|
||||||
".config/gamemode.ini".source = ./programs/gamemode.ini;
|
".config/gamemode.ini".source = ./programs/gamemode.ini;
|
||||||
|
|
||||||
# Configuration for mako, a notification daemon.
|
# Configuration for mako, a notification daemon.
|
||||||
".config/mako".source = ./programs/mako;
|
".config/mako".source = ./programs/mako;
|
||||||
|
|
||||||
## Kvantum's theme configuration.
|
|
||||||
".config/Kvantum/Catppuccin-Frappe-Lavender" = {
|
|
||||||
source = "${
|
|
||||||
pkgs.catppuccin-kvantum.override {
|
|
||||||
accent = "Lavender";
|
|
||||||
variant = "Frappe";
|
|
||||||
}
|
|
||||||
}/share/Kvantum/Catppuccin-Frappe-Lavender";
|
|
||||||
};
|
|
||||||
|
|
||||||
".config/Kvantum/kvantum.kvconfig".text = ''
|
|
||||||
[General]
|
|
||||||
theme=Catppuccin-Frappe-Lavender
|
|
||||||
'';
|
|
||||||
##
|
|
||||||
|
|
||||||
## Themeing configuration for qt5 and qt6
|
|
||||||
".config/qt5ct/colors".source = ./theming/qt5ct;
|
|
||||||
|
|
||||||
".config/qt6ct/colors".source = ./theming/qt5ct; # We use the qt5ct because it's the SAME spec
|
|
||||||
##
|
##
|
||||||
|
|
||||||
# Configure pipewire for microphone noise supression.
|
# Configure pipewire for microphone noise supression.
|
||||||
|
@ -287,7 +265,8 @@
|
||||||
# Configure QT
|
# Configure QT
|
||||||
qt = {
|
qt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
platformTheme.name = "qtct";
|
platformTheme.name = "kvantum";
|
||||||
|
style.name = "kvantum";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure XDG
|
# Configure XDG
|
||||||
|
|
25
nixos.nix
25
nixos.nix
|
@ -69,7 +69,28 @@
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "nixos"; # Define your hostname.
|
# Configure options for mounted volumes.
|
||||||
|
fileSystems = {
|
||||||
|
"/".options = [ "compress=zstd" ];
|
||||||
|
"/home".options = [ "compress=zstd" ];
|
||||||
|
"/nix".options = [
|
||||||
|
"compress=zstd"
|
||||||
|
"noatime"
|
||||||
|
];
|
||||||
|
"/mnt/extra".options = [ "nofail" ];
|
||||||
|
"/mnt/internal".options = [ "nofail" ];
|
||||||
|
"/mnt/media".options = [ "nofail" ];
|
||||||
|
"/mnt/ssd".options = [ "nofail" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
# Enable btrf's auto scrubbing of volumes.
|
||||||
|
services.btrfs.autoScrub = {
|
||||||
|
enable = true;
|
||||||
|
interval = "weekly";
|
||||||
|
fileSystems = [ "/" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.hostName = "wizdesk"; # Define your hostname.
|
||||||
|
|
||||||
# Enable networking
|
# Enable networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
@ -199,8 +220,8 @@
|
||||||
# Enable SDDM.
|
# Enable SDDM.
|
||||||
services.displayManager.sddm = {
|
services.displayManager.sddm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.kdePackages.sddm;
|
||||||
wayland.enable = true;
|
wayland.enable = true;
|
||||||
theme = "${import ./theming/sddm { inherit pkgs; }}";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable Hyprland
|
# Enable Hyprland
|
||||||
|
|
|
@ -1,19 +1,9 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
let
|
|
||||||
catppuccin-theme = pkgs.fetchFromGitHub {
|
|
||||||
owner = "catppuccin";
|
|
||||||
repo = "alacritty";
|
|
||||||
rev = "94800165c13998b600a9da9d29c330de9f28618e";
|
|
||||||
hash = "sha256-Pi1Hicv3wPALGgqurdTzXEzJNx7vVh+8B9tlqhRpR2Y=";
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
import = [ "${catppuccin-theme}/catppuccin-frappe.toml" ];
|
|
||||||
|
|
||||||
font = {
|
font = {
|
||||||
normal = {
|
normal = {
|
||||||
family = "FantasqueSansM Nerd Font";
|
family = "FantasqueSansM Nerd Font";
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
pt_BR
|
pt_BR
|
||||||
]
|
]
|
||||||
)) # for flyspell
|
)) # for flyspell
|
||||||
|
gnuplot # for plotting graphs
|
||||||
languagetool # for grammar
|
languagetool # for grammar
|
||||||
ledger # for accounting and org-ledger
|
ledger # for accounting and org-ledger
|
||||||
];
|
];
|
||||||
|
|
|
@ -98,3 +98,6 @@
|
||||||
;; Configure doom-themes with treemacs
|
;; Configure doom-themes with treemacs
|
||||||
(with-eval-after-load 'doom-themes
|
(with-eval-after-load 'doom-themes
|
||||||
(doom-themes-treemacs-config))
|
(doom-themes-treemacs-config))
|
||||||
|
|
||||||
|
;; Configure elfeed-org
|
||||||
|
(setq rmh-elfeed-org-files '("/home/wizardlink/Documents/notes/elfeed.org"))
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
# name: 'Catppuccin frappe'
|
|
||||||
# url: 'https://github.com/catppuccin/fish'
|
|
||||||
# preferred_background: 303446
|
|
||||||
|
|
||||||
fish_color_normal c6d0f5
|
|
||||||
fish_color_command 8caaee
|
|
||||||
fish_color_param eebebe
|
|
||||||
fish_color_keyword e78284
|
|
||||||
fish_color_quote a6d189
|
|
||||||
fish_color_redirection f4b8e4
|
|
||||||
fish_color_end ef9f76
|
|
||||||
fish_color_comment 838ba7
|
|
||||||
fish_color_error e78284
|
|
||||||
fish_color_gray 737994
|
|
||||||
fish_color_selection --background=414559
|
|
||||||
fish_color_search_match --background=414559
|
|
||||||
fish_color_option a6d189
|
|
||||||
fish_color_operator f4b8e4
|
|
||||||
fish_color_escape ea999c
|
|
||||||
fish_color_autosuggestion 737994
|
|
||||||
fish_color_cancel e78284
|
|
||||||
fish_color_cwd e5c890
|
|
||||||
fish_color_user 81c8be
|
|
||||||
fish_color_host 8caaee
|
|
||||||
fish_color_host_remote a6d189
|
|
||||||
fish_color_status e78284
|
|
||||||
fish_pager_color_progress 737994
|
|
||||||
fish_pager_color_prefix f4b8e4
|
|
||||||
fish_pager_color_completion c6d0f5
|
|
||||||
fish_pager_color_description 737994
|
|
|
@ -10,17 +10,17 @@ desiredgov=performance
|
||||||
; GameMode can change the scheduler policy to SCHED_ISO on kernels which support it (currently
|
; GameMode can change the scheduler policy to SCHED_ISO on kernels which support it (currently
|
||||||
; not supported by upstream kernels). Can be set to "auto", "on" or "off". "auto" will enable
|
; not supported by upstream kernels). Can be set to "auto", "on" or "off". "auto" will enable
|
||||||
; with 4 or more CPU cores. "on" will always enable. Defaults to "off".
|
; with 4 or more CPU cores. "on" will always enable. Defaults to "off".
|
||||||
softrealtime=off
|
softrealtime=auto
|
||||||
|
|
||||||
; GameMode can renice game processes. You can put any value between 0 and 20 here, the value
|
; GameMode can renice game processes. You can put any value between 0 and 20 here, the value
|
||||||
; will be negated and applied as a nice value (0 means no change). Defaults to 0.
|
; will be negated and applied as a nice value (0 means no change). Defaults to 0.
|
||||||
renice=5
|
renice=0
|
||||||
|
|
||||||
; By default, GameMode adjusts the iopriority of clients to BE/0, you can put any value
|
; By default, GameMode adjusts the iopriority of clients to BE/0, you can put any value
|
||||||
; between 0 and 7 here (with 0 being highest priority), or one of the special values
|
; between 0 and 7 here (with 0 being highest priority), or one of the special values
|
||||||
; "off" (to disable) or "reset" (to restore Linux default behavior based on CPU priority),
|
; "off" (to disable) or "reset" (to restore Linux default behavior based on CPU priority),
|
||||||
; currently, only the best-effort class is supported thus you cannot set it here
|
; currently, only the best-effort class is supported thus you cannot set it here
|
||||||
ioprio=2
|
ioprio=0
|
||||||
|
|
||||||
; Sets whether gamemode will inhibit the screensaver when active
|
; Sets whether gamemode will inhibit the screensaver when active
|
||||||
; Defaults to 1
|
; Defaults to 1
|
||||||
|
@ -42,17 +42,17 @@ inhibit_screensaver=0
|
||||||
; It is also highly recommended you try these settings out first manually to find the sweet spots
|
; It is also highly recommended you try these settings out first manually to find the sweet spots
|
||||||
|
|
||||||
; Setting this to the keyphrase "accept-responsibility" will allow gamemode to apply GPU optimisations such as overclocks
|
; Setting this to the keyphrase "accept-responsibility" will allow gamemode to apply GPU optimisations such as overclocks
|
||||||
;apply_gpu_optimisations=accept-responsibility
|
apply_gpu_optimisations=accept-responsibility
|
||||||
|
|
||||||
; The DRM device number on the system (usually 0), ie. the number in /sys/class/drm/card0/
|
; The DRM device number on the system (usually 0), ie. the number in /sys/class/drm/card0/
|
||||||
;gpu_device=0
|
gpu_device=1
|
||||||
|
|
||||||
; AMD specific settings
|
; AMD specific settings
|
||||||
; Requires a relatively up to date AMDGPU kernel module
|
; Requires a relatively up to date AMDGPU kernel module
|
||||||
; See: https://dri.freedesktop.org/docs/drm/gpu/amdgpu.html#gpu-power-thermal-controls-and-monitoring
|
; See: https://dri.freedesktop.org/docs/drm/gpu/amdgpu.html#gpu-power-thermal-controls-and-monitoring
|
||||||
; It is also highly recommended you use lm-sensors (or other available tools) to verify card temperatures
|
; It is also highly recommended you use lm-sensors (or other available tools) to verify card temperatures
|
||||||
; This corresponds to power_dpm_force_performance_level, "manual" is not supported for now
|
; This corresponds to power_dpm_force_performance_level, "manual" is not supported for now
|
||||||
amd_performance_level=auto
|
amd_performance_level=high
|
||||||
|
|
||||||
[supervisor]
|
[supervisor]
|
||||||
; This section controls the new gamemode functions gamemode_request_start_for and gamemode_request_end_for
|
; This section controls the new gamemode functions gamemode_request_start_for and gamemode_request_end_for
|
||||||
|
|
|
@ -1,32 +1,21 @@
|
||||||
anchor=bottom-right
|
anchor=bottom-right
|
||||||
background-color=#282a36
|
border-radius=30
|
||||||
border-color=#282a36
|
border-size=1
|
||||||
border-radius=20
|
|
||||||
border-size=2
|
|
||||||
default-timeout=10000
|
default-timeout=10000
|
||||||
format=<span font="FantasqueSansMono NF weight=325 Italic" size="12288">%s</span>\n<span font="FantasqueSansMono NF weight=325" size="12288">%b</span>
|
format=<span font="FantasqueSansMono NF weight=325 Italic" size="12288">%s</span>\n<span font="FantasqueSansMono NF weight=325" size="12288">%b</span>
|
||||||
group-by=summary
|
group-by=summary
|
||||||
height=125
|
height=180
|
||||||
icon-location=right
|
icon-location=right
|
||||||
layer=top
|
layer=top
|
||||||
margin=0,20,15
|
margin=0
|
||||||
markup=1
|
markup=1
|
||||||
max-icon-size=48
|
max-icon-size=48
|
||||||
padding=10,5,10
|
outer-margin=8
|
||||||
text-color=#44475a
|
padding=25
|
||||||
width=300
|
width=375
|
||||||
|
|
||||||
[grouped]
|
[grouped]
|
||||||
format=<span font="FantasqueSansMono NF weight=325 Italic" size="12288">%s</span>\n<span font="FantasqueSansMono NF weight=325" size="12288">%b</span>
|
format=<span font="FantasqueSansMono NF weight=325 Italic" size="12288">%s</span>\n<span font="FantasqueSansMono NF weight=325" size="12288">%b</span>
|
||||||
|
|
||||||
[mode=do-not-disturb]
|
[mode=do-not-disturb]
|
||||||
invisible=1
|
invisible=1
|
||||||
|
|
||||||
[urgency=low]
|
|
||||||
border-color=#282a36
|
|
||||||
|
|
||||||
[urgency=normal]
|
|
||||||
border-color=#f1fa8c
|
|
||||||
|
|
||||||
[urgency=high]
|
|
||||||
border-color=#ff5555
|
|
||||||
|
|
|
@ -22,7 +22,5 @@
|
||||||
sidebar-mode = true;
|
sidebar-mode = true;
|
||||||
terminal = "alacritty";
|
terminal = "alacritty";
|
||||||
};
|
};
|
||||||
|
|
||||||
theme = ./catppuccin-frappe.rasi;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,13 +4,5 @@
|
||||||
programs.tmux = {
|
programs.tmux = {
|
||||||
enable = true;
|
enable = true;
|
||||||
clock24 = true;
|
clock24 = true;
|
||||||
plugins = with pkgs.tmuxPlugins; [
|
|
||||||
{
|
|
||||||
plugin = catppuccin;
|
|
||||||
extraConfig = ''
|
|
||||||
set -g @catppuccin_flavour 'frappe'
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,3 +51,8 @@ kdeconnect-cli --refresh &
|
||||||
#
|
#
|
||||||
wl-paste --type text --watch cliphist store &
|
wl-paste --type text --watch cliphist store &
|
||||||
wl-paste --type image --watch cliphist store &
|
wl-paste --type image --watch cliphist store &
|
||||||
|
|
||||||
|
#
|
||||||
|
# Start the blueman applet for managing bluetooth devices
|
||||||
|
#
|
||||||
|
blueman-applet &
|
||||||
|
|
7
theming/catppuccin.nix
Normal file
7
theming/catppuccin.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
catppuccin = {
|
||||||
|
enable = true;
|
||||||
|
accent = "lavender";
|
||||||
|
flavor = "frappe";
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,4 +0,0 @@
|
||||||
[ColorScheme]
|
|
||||||
active_colors=#ffc6d0f5, #ff292c3c, #ffa5adce, #ff949cbb, #ff51576d, #ff737994, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff838ba7, #ff8caaee, #ff303446, #ff8caaee, #ffe78284, #ff303446, #ffc6d0f5, #ff232634, #ffc6d0f5, #80838ba7
|
|
||||||
disabled_colors=#ffa5adce, #ff292c3c, #ffa5adce, #ff949cbb, #ff51576d, #ff737994, #ffa5adce, #ffa5adce, #ffa5adce, #ff303446, #ff292c3c, #ff838ba7, #ff626880, #ffb5bfe2, #ff8caaee, #ffe78284, #ff303446, #ffc6d0f5, #ff232634, #ffc6d0f5, #80838ba7
|
|
||||||
inactive_colors=#ffc6d0f5, #ff292c3c, #ffa5adce, #ff949cbb, #ff51576d, #ff737994, #ffc6d0f5, #ffc6d0f5, #ffc6d0f5, #ff303446, #ff292c3c, #ff838ba7, #ff414559, #ffa5adcb, #ff8caaee, #ffe78284, #ff303446, #ffc6d0f5, #ff232634, #ffc6d0f5, #80838ba7
|
|
|
@ -1,4 +0,0 @@
|
||||||
[ColorScheme]
|
|
||||||
active_colors=#ff4c4f69, #ffe6e9ef, #ff6c6f85, #ff7c7f93, #ffbcc0cc, #ff9ca0b0, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ff8c8fa1, #ff1e66f5, #ffeff1f5, #ff7287fd, #ffe64553, #ffeff1f5, #ff4c4f69, #ffdce0e8, #ff4c4f69, #808c8fa1
|
|
||||||
disabled_colors=#ff6c6f85, #ffe6e9ef, #ff6c6f85, #ff7c7f93, #ffbcc0cc, #ff9ca0b0, #ff6c6f85, #ff6c6f85, #ff6c6f85, #ffeff1f5, #ffe6e9ef, #ff8c8fa1, #ff9ca0b0, #ff5c5f77, #ff7287fd, #ffe64553, #ffeff1f5, #ff4c4f69, #ffdce0e8, #ff4c4f69, #808c8fa1
|
|
||||||
inactive_colors=#ff4c4f69, #ffe6e9ef, #ff6c6f85, #ff7c7f93, #ffbcc0cc, #ff9ca0b0, #ff4c4f69, #ff4c4f69, #ff4c4f69, #ffeff1f5, #ffe6e9ef, #ff8c8fa1, #ffccd0da, #ff6c6f85, #ff7287fd, #ffe64553, #ffeff1f5, #ff4c4f69, #ffdce0e8, #ff4c4f69, #808c8fa1
|
|
|
@ -1,4 +0,0 @@
|
||||||
[ColorScheme]
|
|
||||||
active_colors=#ffcad3f5, #ff1e2030, #ffa5adcb, #ff939ab7, #ff494d64, #ff6e738d, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff8087a2, #ff8aadf4, #ff24273a, #ff8aadf4, #ffed8796, #ff24273a, #ffcad3f5, #ff181926, #ffcad3f5, #808087a2
|
|
||||||
disabled_colors=#ffa5adcb, #ff1e2030, #ffa5adcb, #ff939ab7, #ff494d64, #ff6e738d, #ffa5adcb, #ffa5adcb, #ffa5adcb, #ff24273a, #ff1e2030, #ff8087a2, #ff8aadf4, #ff494d64, #ff8aadf4, #ffed8796, #ff24273a, #ffcad3f5, #ff181926, #ffcad3f5, #808087a2
|
|
||||||
inactive_colors=#ffcdd6f4, #ff1e2030, #ffa5adcb, #ff939ab7, #ff494d64, #ff6e738d, #ffcad3f5, #ffcad3f5, #ffcad3f5, #ff24273a, #ff1e2030, #ff8087a2, #ff8aadf4, #ffa5adcb, #ff8aadf4, #ffed8796, #ff24273a, #ffcad3f5, #ff181926, #ffcad3f5, #808087a2
|
|
|
@ -1,4 +0,0 @@
|
||||||
[ColorScheme]
|
|
||||||
active_colors=#ffcdd6f4, #ff1e1e2e, #ffa6adc8, #ff9399b2, #ff45475a, #ff6c7086, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff7f849c, #ff89b4fa, #ff1e1e2e, #ff89b4fa, #fff38ba8, #ff1e1e2e, #ffcdd6f4, #ff11111b, #ffcdd6f4, #807f849c
|
|
||||||
disabled_colors=#ffa6adc8, #ff1e1e2e, #ffa6adc8, #ff9399b2, #ff45475a, #ff6c7086, #ffa6adc8, #ffa6adc8, #ffa6adc8, #ff1e1e2e, #ff11111b, #ff7f849c, #ff89b4fa, #ff45475a, #ff89b4fa, #fff38ba8, #ff1e1e2e, #ffcdd6f4, #ff11111b, #ffcdd6f4, #807f849c
|
|
||||||
inactive_colors=#ffcdd6f4, #ff1e1e2e, #ffa6adc8, #ff9399b2, #ff45475a, #ff6c7086, #ffcdd6f4, #ffcdd6f4, #ffcdd6f4, #ff1e1e2e, #ff181825, #ff7f849c, #ff89b4fa, #ffa6adc8, #ff89b4fa, #fff38ba8, #ff1e1e2e, #ffcdd6f4, #ff11111b, #ffcdd6f4, #807f849c
|
|
Binary file not shown.
Before Width: | Height: | Size: 4.8 MiB |
|
@ -1,21 +0,0 @@
|
||||||
{ pkgs }:
|
|
||||||
|
|
||||||
let
|
|
||||||
image = ./Background.jpg;
|
|
||||||
in
|
|
||||||
pkgs.stdenv.mkDerivation {
|
|
||||||
name = "sddm-theme";
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "MarianArlt";
|
|
||||||
repo = "sddm-sugar-dark";
|
|
||||||
rev = "ceb2c455663429be03ba62d9f898c571650ef7fe";
|
|
||||||
sha256 = "0153z1kylbhc9d12nxy9vpn0spxgrhgy36wy37pk6ysq7akaqlvy";
|
|
||||||
};
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out
|
|
||||||
cp -R ./* $out/
|
|
||||||
cd $out/
|
|
||||||
rm Background.jpg
|
|
||||||
cp -r ${image} $out/Background.jpg
|
|
||||||
'';
|
|
||||||
}
|
|
Loading…
Reference in a new issue