Push these changes to a branch cause I'm kind of giving up
This commit is contained in:
parent
d9469fc321
commit
e3bacb2d84
229 changed files with 1496 additions and 1479 deletions
6
home/modules/default.nix
Normal file
6
home/modules/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./files
|
||||
./settings
|
||||
];
|
||||
}
|
BIN
home/modules/files/assets/user-icon.png
Normal file
BIN
home/modules/files/assets/user-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 86 KiB |
BIN
home/modules/files/assets/wallpapers/1.png
Normal file
BIN
home/modules/files/assets/wallpapers/1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2 MiB |
BIN
home/modules/files/assets/wallpapers/2.png
Normal file
BIN
home/modules/files/assets/wallpapers/2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 MiB |
BIN
home/modules/files/assets/wallpapers/3.png
Normal file
BIN
home/modules/files/assets/wallpapers/3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 MiB |
BIN
home/modules/files/assets/wallpapers/lock.png
Normal file
BIN
home/modules/files/assets/wallpapers/lock.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 314 KiB |
17
home/modules/files/default.nix
Normal file
17
home/modules/files/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{pkgs, ...}: {
|
||||
home.file = {
|
||||
".face" = {
|
||||
source = ./assets/user-icon.png;
|
||||
};
|
||||
".wallpapers" = {
|
||||
source = ./assets/wallpapers;
|
||||
recursive = true;
|
||||
};
|
||||
".icons/default" = {
|
||||
source = "${pkgs.simp1e-cursors}/share/icons/Simp1e-Dark";
|
||||
};
|
||||
".alsoftrc" = {
|
||||
text = ''drivers=pulse'';
|
||||
};
|
||||
};
|
||||
}
|
8
home/modules/overlays/default.nix
Normal file
8
home/modules/overlays/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ ... }: {
|
||||
nixpkgs.overlays = [
|
||||
outputs.overlays.additions
|
||||
outputs.overlays.selfsuper
|
||||
outputs.overlays.finalprev
|
||||
inputs.blender-bin.overlays.default
|
||||
];
|
||||
}
|
11
home/modules/settings/dconf/default.nix
Normal file
11
home/modules/settings/dconf/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ ... }: {
|
||||
dconf.settings = {
|
||||
"org/gnome/desktop/interface/color-scheme" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
"org/virt-manager/virt-manager/connections" = {
|
||||
autoconnect = ["qemu:///system"];
|
||||
uris = ["qemu:///system"];
|
||||
};
|
||||
};
|
||||
}
|
7
home/modules/settings/default.nix
Normal file
7
home/modules/settings/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./dconf
|
||||
./gtk
|
||||
./xdg
|
||||
];
|
||||
}
|
65
home/modules/settings/gtk/default.nix
Normal file
65
home/modules/settings/gtk/default.nix
Normal file
|
@ -0,0 +1,65 @@
|
|||
{ pkgs, outputs, ... }: {
|
||||
gtk = {
|
||||
enable = true;
|
||||
font = {
|
||||
name = "${outputs.look.fonts.main}";
|
||||
size = 11;
|
||||
};
|
||||
theme = {
|
||||
name = "Colloid-Dark";
|
||||
package = pkgs.colloid-gtk-theme.override {
|
||||
themeVariants = ["default"];
|
||||
colorVariants = ["dark"];
|
||||
sizeVariants = ["standard"];
|
||||
tweaks = ["black" "rimless" "normal"];
|
||||
};
|
||||
};
|
||||
iconTheme = {
|
||||
package = pkgs.papirus-icon-theme.override {color = "indigo";};
|
||||
name = "Papirus-Dark";
|
||||
};
|
||||
cursorTheme = {
|
||||
package = pkgs.simp1e-cursors;
|
||||
name = "Simp1e-Dark";
|
||||
};
|
||||
|
||||
gtk3 = {
|
||||
bookmarks = [
|
||||
# Local
|
||||
"file:///home/jimbo/Downloads"
|
||||
"file:///home/jimbo/Documents"
|
||||
"file:///home/jimbo/Videos"
|
||||
"file:///home/jimbo/Pictures/Screenshots"
|
||||
"file:///home/jimbo/VMs"
|
||||
|
||||
# Remote
|
||||
"file:///home/jimbo/JimboNFS/Downloads"
|
||||
"file:///home/jimbo/JimboNFS/Documents"
|
||||
"file:///home/jimbo/JimboNFS/Music"
|
||||
"file:///home/jimbo/JimboNFS/Photos"
|
||||
"file:///home/jimbo/JimboNFS/Videos"
|
||||
"file:///home/jimbo/JimboNFS/Projects"
|
||||
|
||||
# More important stuff
|
||||
"file:///home/jimbo/JimboNFS/School"
|
||||
"file:///etc/nixos"
|
||||
];
|
||||
|
||||
# Disable shadows
|
||||
extraCss = ''
|
||||
* { outline-width: 0px; }
|
||||
decoration { box-shadow: none; }
|
||||
'';
|
||||
};
|
||||
|
||||
# Stop gtk4 from being rounded
|
||||
gtk4.extraCss = ''
|
||||
window {
|
||||
border-top-left-radius:0;
|
||||
border-top-right-radius:0;
|
||||
border-bottom-left-radius:0;
|
||||
border-bottom-right-radius:0;
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
9
home/modules/settings/xdg/default.nix
Normal file
9
home/modules/settings/xdg/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ ... }: {
|
||||
xdg.mimeApps.defaultApplications = {
|
||||
"inode/directory" = ["pcmanfm-qt.desktop"];
|
||||
"text/plain" = ["nvim.desktop"];
|
||||
"image/png" = ["imv.desktop"];
|
||||
"image/jpeg" = ["imv.desktop"];
|
||||
"video/*" = ["mpv.desktop"];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue