tangled
alpha
login
or
join now
m1emi1em.dev
/
nixos-flake
1
fork
atom
Personal NixOS flake
1
fork
atom
overview
issues
pulls
pipelines
feat(add): hyprpaper conf, reorg gaming conf
m1emi1em.dev
1 year ago
6965440d
c19246c6
+25
-1
5 changed files
expand all
collapse all
unified
split
home
emily
default.nix
gaming.nix
hyprland.nix
home.nix
stuff
default.nix
+1
home.nix
···
71
71
./stuff
72
72
./dev
73
73
./lang
74
74
+
./home/emily
74
75
];
75
76
76
77
# nixpkgs.config.packageOverrides = pkgs: {
+7
home/emily/default.nix
···
1
1
+
{pkgs, ...}:
2
2
+
{
3
3
+
imports = [
4
4
+
./hyprland.nix
5
5
+
./gaming.nix
6
6
+
];
7
7
+
}
+6
home/emily/gaming.nix
···
1
1
+
{config, pkgs, inputs, ...} :
2
2
+
{
3
3
+
home.packages = with pkgs; [
4
4
+
osu-lazer-bin
5
5
+
];
6
6
+
}
+11
home/emily/hyprland.nix
···
1
1
+
{pkgs, ...}:
2
2
+
{
3
3
+
services = {
4
4
+
hyprpaper = {
5
5
+
enable = true;
6
6
+
settings = {
7
7
+
ipc = "on";
8
8
+
};
9
9
+
};
10
10
+
};
11
11
+
}
-1
stuff/default.nix
···
4
4
./hyprland.nix
5
5
./term.nix
6
6
./emu.nix
7
7
-
./games.nix
8
7
./doc.nix
9
8
];
10
9
}