Compare commits
No commits in common. "6a5c76d2cabe2f27fe56c475c435ccd899f36438" and "ee7b1168f39bfc7c48f88565e56c3f0612f0d662" have entirely different histories.
6a5c76d2ca
...
ee7b1168f3
21 changed files with 22 additions and 71 deletions
|
@ -29,7 +29,7 @@
|
|||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, disko, ... }@inputs:
|
||||
let
|
||||
let
|
||||
inherit (self) outputs;
|
||||
forAllSystems = nixpkgs.lib.genAttrs [
|
||||
"x86_64-linux"
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
feh
|
||||
|
||||
hyfetch
|
||||
enpass
|
||||
webcord
|
||||
obsidian
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
./auto-cpufreq.nix
|
||||
./envvar.nix
|
||||
./git.nix
|
||||
./hyfetch.nix
|
||||
./locales.nix
|
||||
#./ssh.nix
|
||||
./syncthing.nix
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./rust.nix
|
||||
./vscodium.nix
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
||||
rustup
|
||||
probe-rs
|
||||
cargo-binutils
|
||||
|
||||
];
|
||||
}
|
|
@ -8,7 +8,6 @@
|
|||
|
||||
userSettings = {
|
||||
"[nix]"."editor.tabSize" = 2;
|
||||
"explorer.confirmDragAndDrop" = false;
|
||||
};
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
# System
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hypridle.nix
|
||||
./hyprlock.nix
|
||||
./kanshi.nix
|
||||
];
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.hyprland.enable = true;
|
||||
imports = [
|
||||
./hyprland.nix
|
||||
./hyprpaper.nix
|
||||
./mako.nix
|
||||
./pipewire.nix
|
||||
./polkit.nix
|
||||
./utils.nix
|
||||
./wofi.nix
|
||||
];
|
||||
|
||||
|
||||
}
|
|
@ -1,7 +1,19 @@
|
|||
{ pkgs, configVars, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.hyprland.enable = true;
|
||||
imports = [
|
||||
./common
|
||||
./${configVars.hostname}
|
||||
./hypridle.nix
|
||||
./hyprland.nix
|
||||
./hyprlock.nix
|
||||
./hyprpaper.nix
|
||||
./kanshi.nix
|
||||
./mako.nix
|
||||
./pipewire.nix
|
||||
./polkit.nix
|
||||
./utils.nix
|
||||
./wofi.nix
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
criteria = "eDP-1";
|
||||
mode = "2256x1504";
|
||||
position = "3840,0";
|
||||
scale = 1.0;
|
||||
scale = 1.6;
|
||||
transform = "normal";
|
||||
}
|
||||
];
|
|
@ -1,25 +0,0 @@
|
|||
{ 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 = {
|
||||
enable = true;
|
||||
user = "willifan";
|
||||
dataDir = "/mnt/data";
|
||||
configDir = "/mnt/data/.config/syncthing";
|
||||
dataDir = "/home/willifan/temp";
|
||||
configDir = "/home/willifan/temp/.config/syncthing";
|
||||
overrideDevices = true;
|
||||
overrideFolders = true;
|
||||
settings = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue