Compare commits
7 commits
ee7b1168f3
...
6a5c76d2ca
Author | SHA1 | Date | |
---|---|---|---|
|
6a5c76d2ca | ||
|
0e010c4a69 | ||
|
8768d12ad6 | ||
|
42931f9dbd | ||
|
c104ae441c | ||
|
e3176e1858 | ||
|
246b2a75ea |
21 changed files with 71 additions and 22 deletions
|
@ -29,7 +29,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, home-manager, disko, ... }@inputs:
|
outputs = { self, nixpkgs, home-manager, disko, ... }@inputs:
|
||||||
let
|
let
|
||||||
inherit (self) outputs;
|
inherit (self) outputs;
|
||||||
forAllSystems = nixpkgs.lib.genAttrs [
|
forAllSystems = nixpkgs.lib.genAttrs [
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
|
|
||||||
feh
|
feh
|
||||||
|
|
||||||
hyfetch
|
|
||||||
enpass
|
enpass
|
||||||
webcord
|
webcord
|
||||||
obsidian
|
obsidian
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
./auto-cpufreq.nix
|
./auto-cpufreq.nix
|
||||||
./envvar.nix
|
./envvar.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
|
./hyfetch.nix
|
||||||
./locales.nix
|
./locales.nix
|
||||||
#./ssh.nix
|
#./ssh.nix
|
||||||
./syncthing.nix
|
./syncthing.nix
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./rust.nix
|
||||||
./vscodium.nix
|
./vscodium.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
10
users/willifan/graphical/dev/rust.nix
Normal file
10
users/willifan/graphical/dev/rust.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
||||||
|
rustup
|
||||||
|
probe-rs
|
||||||
|
cargo-binutils
|
||||||
|
|
||||||
|
];
|
||||||
|
}
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"[nix]"."editor.tabSize" = 2;
|
"[nix]"."editor.tabSize" = 2;
|
||||||
|
"explorer.confirmDragAndDrop" = false;
|
||||||
};
|
};
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
# System
|
# System
|
||||||
|
|
9
users/willifan/graphical/hyprland/Lenni/default.nix
Normal file
9
users/willifan/graphical/hyprland/Lenni/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./hypridle.nix
|
||||||
|
./hyprlock.nix
|
||||||
|
./kanshi.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -70,7 +70,7 @@
|
||||||
criteria = "eDP-1";
|
criteria = "eDP-1";
|
||||||
mode = "2256x1504";
|
mode = "2256x1504";
|
||||||
position = "3840,0";
|
position = "3840,0";
|
||||||
scale = 1.6;
|
scale = 1.0;
|
||||||
transform = "normal";
|
transform = "normal";
|
||||||
}
|
}
|
||||||
];
|
];
|
16
users/willifan/graphical/hyprland/common/default.nix
Normal file
16
users/willifan/graphical/hyprland/common/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.hyprland.enable = true;
|
||||||
|
imports = [
|
||||||
|
./hyprland.nix
|
||||||
|
./hyprpaper.nix
|
||||||
|
./mako.nix
|
||||||
|
./pipewire.nix
|
||||||
|
./polkit.nix
|
||||||
|
./utils.nix
|
||||||
|
./wofi.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -1,19 +1,7 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, configVars, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.hyprland.enable = true;
|
|
||||||
imports = [
|
imports = [
|
||||||
./hypridle.nix
|
./common
|
||||||
./hyprland.nix
|
./${configVars.hostname}
|
||||||
./hyprlock.nix
|
|
||||||
./hyprpaper.nix
|
|
||||||
./kanshi.nix
|
|
||||||
./mako.nix
|
|
||||||
./pipewire.nix
|
|
||||||
./polkit.nix
|
|
||||||
./utils.nix
|
|
||||||
./wofi.nix
|
|
||||||
];
|
];
|
||||||
|
}
|
||||||
|
|
||||||
}
|
|
25
users/willifan/hyfetch.nix
Normal file
25
users/willifan/hyfetch.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ pkgs, home-manager, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home-manager.users.willifan = {
|
||||||
|
programs.hyfetch = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
preset = "transgender";
|
||||||
|
mode = "rgb";
|
||||||
|
light_dark = "dark";
|
||||||
|
lightness = 0.69;
|
||||||
|
color_align = {
|
||||||
|
mode = "horizontal";
|
||||||
|
custom_colors = [];
|
||||||
|
fore_back = null;
|
||||||
|
};
|
||||||
|
backend = "neofetch";
|
||||||
|
args = null;
|
||||||
|
distro = null;
|
||||||
|
pride_month_shown = [];
|
||||||
|
pride_month_disable = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -3,8 +3,8 @@
|
||||||
services.syncthing = {
|
services.syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
user = "willifan";
|
user = "willifan";
|
||||||
dataDir = "/home/willifan/temp";
|
dataDir = "/mnt/data";
|
||||||
configDir = "/home/willifan/temp/.config/syncthing";
|
configDir = "/mnt/data/.config/syncthing";
|
||||||
overrideDevices = true;
|
overrideDevices = true;
|
||||||
overrideFolders = true;
|
overrideFolders = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue