treewide: format with nixfmt
This commit is contained in:
parent
303e982a8e
commit
26ad72592a
47 changed files with 380 additions and 725 deletions
|
@ -1,9 +1,5 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
nixpkgs = {
|
nixpkgs = { config = { allowUnfree = true; }; };
|
||||||
config = {
|
|
||||||
allowUnfree = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services.nix-daemon.enable = true;
|
services.nix-daemon.enable = true;
|
||||||
nix.settings.experimental-features = "nix-command flakes";
|
nix.settings.experimental-features = "nix-command flakes";
|
||||||
|
|
46
flake.nix
46
flake.nix
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
description = "Mine very own Nix(OS) / home-manager / nix-darwin configuration";
|
description =
|
||||||
|
"Mine very own Nix(OS) / home-manager / nix-darwin configuration";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
# Nixpkgs
|
# Nixpkgs
|
||||||
|
@ -26,31 +27,18 @@
|
||||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs = { self, nixpkgs, home-manager, nixos-hardware, darwin, ... }@inputs:
|
||||||
{ self
|
|
||||||
, nixpkgs
|
|
||||||
, home-manager
|
|
||||||
, nixos-hardware
|
|
||||||
, darwin
|
|
||||||
, ...
|
|
||||||
}@inputs:
|
|
||||||
let
|
let
|
||||||
inherit (self) outputs;
|
inherit (self) outputs;
|
||||||
lib = nixpkgs.lib;
|
lib = nixpkgs.lib;
|
||||||
systems = [
|
systems = [ "x86_64-linux" "aarch64-darwin" ];
|
||||||
"x86_64-linux"
|
|
||||||
"aarch64-darwin"
|
|
||||||
];
|
|
||||||
forEachSystem = f: lib.genAttrs systems (system: f pkgsFor.${system});
|
forEachSystem = f: lib.genAttrs systems (system: f pkgsFor.${system});
|
||||||
pkgsFor = lib.genAttrs systems (
|
pkgsFor = lib.genAttrs systems (system:
|
||||||
system:
|
|
||||||
import nixpkgs {
|
import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
}
|
});
|
||||||
);
|
in {
|
||||||
in
|
|
||||||
{
|
|
||||||
inherit lib;
|
inherit lib;
|
||||||
packages = forEachSystem (pkgs: import ./pkgs { inherit pkgs; });
|
packages = forEachSystem (pkgs: import ./pkgs { inherit pkgs; });
|
||||||
devShells = forEachSystem (pkgs: import ./shell.nix { inherit pkgs; });
|
devShells = forEachSystem (pkgs: import ./shell.nix { inherit pkgs; });
|
||||||
|
@ -62,33 +50,25 @@
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
enoko = lib.nixosSystem {
|
enoko = lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = { inherit inputs outputs; };
|
||||||
inherit inputs outputs;
|
|
||||||
};
|
|
||||||
modules = [
|
modules = [
|
||||||
./nixos/enoko/configuration.nix
|
./nixos/enoko/configuration.nix
|
||||||
nixos-hardware.nixosModules.framework-13-7040-amd
|
nixos-hardware.nixosModules.framework-13-7040-amd
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
{
|
{
|
||||||
home-manager.extraSpecialArgs = {
|
home-manager.extraSpecialArgs = { inherit inputs outputs; };
|
||||||
inherit inputs outputs;
|
|
||||||
};
|
|
||||||
home-manager.users.lu = import ./home/enoko.nix;
|
home-manager.users.lu = import ./home/enoko.nix;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
yukari = lib.nixosSystem {
|
yukari = lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = { inherit inputs outputs; };
|
||||||
inherit inputs outputs;
|
|
||||||
};
|
|
||||||
modules = [
|
modules = [
|
||||||
./nixos/yukari/configuration.nix
|
./nixos/yukari/configuration.nix
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
{
|
{
|
||||||
home-manager.extraSpecialArgs = {
|
home-manager.extraSpecialArgs = { inherit inputs outputs; };
|
||||||
inherit inputs outputs;
|
|
||||||
};
|
|
||||||
home-manager.users.lu = import ./home/yukari.nix;
|
home-manager.users.lu = import ./home/yukari.nix;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
@ -102,9 +82,7 @@
|
||||||
./darwin/koishi/configuration.nix
|
./darwin/koishi/configuration.nix
|
||||||
home-manager.darwinModules.home-manager
|
home-manager.darwinModules.home-manager
|
||||||
{
|
{
|
||||||
home-manager.extraSpecialArgs = {
|
home-manager.extraSpecialArgs = { inherit inputs outputs; };
|
||||||
inherit inputs outputs;
|
|
||||||
};
|
|
||||||
home-manager.users.lu = import ./home/koishi.nix;
|
home-manager.users.lu = import ./home/koishi.nix;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,23 +1,16 @@
|
||||||
# enoko is my framework 13-inch AMD laptop, running nixos
|
# enoko is my framework 13-inch AMD laptop, running nixos
|
||||||
{ ... }:
|
{ ... }: {
|
||||||
{
|
imports = [ ./global.nix ./global.linux.nix ./features/desktop ];
|
||||||
imports = [
|
|
||||||
./global.nix
|
|
||||||
./global.linux.nix
|
|
||||||
./features/desktop
|
|
||||||
];
|
|
||||||
|
|
||||||
config.monitors = [
|
config.monitors = [{
|
||||||
{
|
name = "eDP-1";
|
||||||
name = "eDP-1";
|
width = 2256;
|
||||||
width = 2256;
|
height = 1504;
|
||||||
height = 1504;
|
workspace = "1";
|
||||||
workspace = "1";
|
primary = true;
|
||||||
primary = true;
|
position = "0x0";
|
||||||
position = "0x0";
|
scale = "1.175000";
|
||||||
scale = "1.175000";
|
}];
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
# Fix HiDPI scaling
|
# Fix HiDPI scaling
|
||||||
# config.wayland.windowManager.hyprland = {
|
# config.wayland.windowManager.hyprland = {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ ... }:
|
{ ... }: {
|
||||||
{
|
|
||||||
programs.direnv = {
|
programs.direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
|
|
|
@ -1,4 +1 @@
|
||||||
{ ... }:
|
{ ... }: { programs.lazygit.enable = true; }
|
||||||
{
|
|
||||||
programs.lazygit.enable = true;
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,16 +1,12 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
home.packages = with pkgs;
|
||||||
home.packages = with pkgs; [
|
[
|
||||||
python3 # needed for installing node.js
|
python3 # needed for installing node.js
|
||||||
];
|
];
|
||||||
programs.mise = {
|
programs.mise = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
|
|
||||||
globalConfig = {
|
globalConfig = { tools = { node = "lts"; }; };
|
||||||
tools = {
|
|
||||||
node = "lts";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: { home.packages = with pkgs; [ _1password-gui ]; }
|
||||||
{
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
_1password-gui
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }: {
|
||||||
{
|
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
./font.nix
|
./font.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
|
|
|
@ -1,9 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
home.packages = with pkgs; [ fira ];
|
||||||
home.packages = with pkgs; [
|
programs.firefox = { enable = true; };
|
||||||
fira
|
|
||||||
];
|
|
||||||
programs.firefox = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,5 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
home.packages = with pkgs; [ recursive noto-fonts-cjk noto-fonts-emoji ];
|
||||||
home.packages = with pkgs; [
|
|
||||||
recursive
|
|
||||||
noto-fonts-cjk
|
|
||||||
noto-fonts-emoji
|
|
||||||
];
|
|
||||||
fontProfiles = {
|
fontProfiles = {
|
||||||
enable = true;
|
enable = true;
|
||||||
monospace = {
|
monospace = {
|
||||||
|
|
|
@ -1,7 +1 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: { home.packages = with pkgs; [ xivlauncher prismlauncher ]; }
|
||||||
{
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
xivlauncher
|
|
||||||
prismlauncher
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,28 +1,11 @@
|
||||||
{
|
{ lib, config, pkgs, ... }: {
|
||||||
lib,
|
imports = [ ../default.nix ../wlr ./swaylock.nix ./swayidle.nix ];
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
../default.nix
|
|
||||||
../wlr
|
|
||||||
./swaylock.nix
|
|
||||||
./swayidle.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [ grimblast pamixer playerctl ];
|
||||||
grimblast
|
|
||||||
pamixer
|
|
||||||
playerctl
|
|
||||||
];
|
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
systemd = {
|
systemd = { enable = true; };
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
general = {
|
general = {
|
||||||
|
@ -32,12 +15,10 @@
|
||||||
};
|
};
|
||||||
cursor.inactive_timeout = 4;
|
cursor.inactive_timeout = 4;
|
||||||
|
|
||||||
device = [
|
device = [{
|
||||||
{
|
name = "royuan-akko-keyboard";
|
||||||
name = "royuan-akko-keyboard";
|
kb_layout = "us_intl";
|
||||||
kb_layout = "us_intl";
|
}];
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
dwindle = {
|
dwindle = {
|
||||||
split_width_multiplier = 1.35;
|
split_width_multiplier = 1.35;
|
||||||
|
@ -51,14 +32,8 @@
|
||||||
"ignorezero,^(wofi)$"
|
"ignorezero,^(wofi)$"
|
||||||
];
|
];
|
||||||
|
|
||||||
windowrulev2 =
|
windowrulev2 = let steam = "title:^()$,class:^(steam)$";
|
||||||
let
|
in [ "stayfocused, ${steam}" "minsize 1 1, ${steam}" ];
|
||||||
steam = "title:^()$,class:^(steam)$";
|
|
||||||
in
|
|
||||||
[
|
|
||||||
"stayfocused, ${steam}"
|
|
||||||
"minsize 1 1, ${steam}"
|
|
||||||
];
|
|
||||||
|
|
||||||
decoration = {
|
decoration = {
|
||||||
active_opacity = 1.0;
|
active_opacity = 1.0;
|
||||||
|
@ -109,119 +84,100 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
bindm = [
|
bindm = [ "SUPER,mouse:272,movewindow" "SUPER,mouse:273,resizewindow" ];
|
||||||
"SUPER,mouse:272,movewindow"
|
|
||||||
"SUPER,mouse:273,resizewindow"
|
|
||||||
];
|
|
||||||
|
|
||||||
bind =
|
bind = let
|
||||||
let
|
terminal = "${pkgs.alacritty}/bin/alacritty";
|
||||||
terminal = "${pkgs.alacritty}/bin/alacritty";
|
grimblast = lib.getExe pkgs.grimblast;
|
||||||
grimblast = lib.getExe pkgs.grimblast;
|
workspaces = [ "1" "2" "3" "4" "5" ];
|
||||||
workspaces = [
|
directions = rec {
|
||||||
"1"
|
left = "l";
|
||||||
"2"
|
right = "r";
|
||||||
"3"
|
up = "u";
|
||||||
"4"
|
down = "d";
|
||||||
"5"
|
h = left;
|
||||||
];
|
l = right;
|
||||||
directions = rec {
|
k = up;
|
||||||
left = "l";
|
j = down;
|
||||||
right = "r";
|
};
|
||||||
up = "u";
|
in [
|
||||||
down = "d";
|
"SUPER,Return,exec,${terminal}"
|
||||||
h = left;
|
"SUPERSHIFT,q,killactive" # exit program
|
||||||
l = right;
|
"SUPERSHIFT,e,exit" # exit hyprland
|
||||||
k = up;
|
"SUPERSHIFT,r,exec,hyprctl reload" # reload currently running hyprland
|
||||||
j = down;
|
|
||||||
};
|
|
||||||
in
|
|
||||||
[
|
|
||||||
"SUPER,Return,exec,${terminal}"
|
|
||||||
"SUPERSHIFT,q,killactive" # exit program
|
|
||||||
"SUPERSHIFT,e,exit" # exit hyprland
|
|
||||||
"SUPERSHIFT,r,exec,hyprctl reload" # reload currently running hyprland
|
|
||||||
|
|
||||||
"SUPER,s,togglesplit" # horizontal split
|
"SUPER,s,togglesplit" # horizontal split
|
||||||
"SUPER,f,fullscreen,1" # borderless window
|
"SUPER,f,fullscreen,1" # borderless window
|
||||||
"SUPERSHIFT,f,fullscreen,0" # proper fullscreen
|
"SUPERSHIFT,f,fullscreen,0" # proper fullscreen
|
||||||
"ALTSHIFT,space,togglefloating" # floating window
|
"ALTSHIFT,space,togglefloating" # floating window
|
||||||
|
|
||||||
"SUPER,minus,splitratio,-0.25" # split gets slightly smaller
|
"SUPER,minus,splitratio,-0.25" # split gets slightly smaller
|
||||||
"SUPERSHIFT,minus,splitratio,-0.3333333" # split gets smaller
|
"SUPERSHIFT,minus,splitratio,-0.3333333" # split gets smaller
|
||||||
"SUPER,equal,splitratio,0.25" # split gets slightly larger
|
"SUPER,equal,splitratio,0.25" # split gets slightly larger
|
||||||
"SUPERSHIFT,equal,splitratio,0.3333333" # split gets larger
|
"SUPERSHIFT,equal,splitratio,0.3333333" # split gets larger
|
||||||
|
|
||||||
"SUPER,g,togglegroup" # make a window group
|
"SUPER,g,togglegroup" # make a window group
|
||||||
"SUPER,t,lockactivegroup,toggle" # lock/unlock the current group
|
"SUPER,t,lockactivegroup,toggle" # lock/unlock the current group
|
||||||
"SUPER,tab,changegroupactive,f" # switch to next window in group
|
"SUPER,tab,changegroupactive,f" # switch to next window in group
|
||||||
"SUPERSHIFT,tab,changegroupactive,p" # switch to prev window in group
|
"SUPERSHIFT,tab,changegroupactive,p" # switch to prev window in group
|
||||||
|
|
||||||
"SUPER,dead_grave,workspace,previous" # prev workspace
|
"SUPER,dead_grave,workspace,previous" # prev workspace
|
||||||
"SUPER,dead_grave,workspace,next" # next workspace
|
"SUPER,dead_grave,workspace,next" # next workspace
|
||||||
|
|
||||||
"SUPER,u,togglespecialworkspace" # toggle special workspace
|
"SUPER,u,togglespecialworkspace" # toggle special workspace
|
||||||
"SUPERSHIFT,u,movetoworkspacesilent,special" # move to special workspace
|
"SUPERSHIFT,u,movetoworkspacesilent,special" # move to special workspace
|
||||||
|
|
||||||
",Print,exec,${grimblast} --notify --freeze copy area" # screenshot area
|
",Print,exec,${grimblast} --notify --freeze copy area" # screenshot area
|
||||||
"SHIFT,Print,exec,${grimblast} --notify --freeze copy output" # screenshot all
|
"SHIFT,Print,exec,${grimblast} --notify --freeze copy output" # screenshot all
|
||||||
|
|
||||||
",XF86AudioRaiseVolume,exec,pamixer -i 5" # raise volume
|
",XF86AudioRaiseVolume,exec,pamixer -i 5" # raise volume
|
||||||
",XF86AudioLowerVolume,exec,pamixer -d 5" # lower volume
|
",XF86AudioLowerVolume,exec,pamixer -d 5" # lower volume
|
||||||
",XF86AudioPlay,exec,playerctl play-pause" # play/pause
|
",XF86AudioPlay,exec,playerctl play-pause" # play/pause
|
||||||
",XF86AudioNext,exec,playerctl next" # next song
|
",XF86AudioNext,exec,playerctl next" # next song
|
||||||
",XF86AudioPrev,exec,playerctl previous" # previous song
|
",XF86AudioPrev,exec,playerctl previous" # previous song
|
||||||
]
|
] ++
|
||||||
++
|
# change workspace
|
||||||
# change workspace
|
(map (n: "SUPER,${n},workspace,name:${n}") workspaces) ++
|
||||||
(map (n: "SUPER,${n},workspace,name:${n}") workspaces)
|
# move window to workspace
|
||||||
++
|
(map (n: "SUPERSHIFT,${n},movetoworkspacesilent,name:${n}") workspaces) ++
|
||||||
# move window to workspace
|
# move focus
|
||||||
(map (n: "SUPERSHIFT,${n},movetoworkspacesilent,name:${n}") workspaces)
|
(lib.mapAttrsToList
|
||||||
++
|
(key: direction: "SUPER,${key},movefocus,${direction}") directions) ++
|
||||||
# move focus
|
# swap windows
|
||||||
(lib.mapAttrsToList (key: direction: "SUPER,${key},movefocus,${direction}") directions)
|
(lib.mapAttrsToList
|
||||||
++
|
(key: direction: "SUPERSHIFT,${key},swapwindow,${direction}")
|
||||||
# swap windows
|
directions) ++
|
||||||
(lib.mapAttrsToList (key: direction: "SUPERSHIFT,${key},swapwindow,${direction}") directions)
|
# move windows
|
||||||
++
|
(lib.mapAttrsToList
|
||||||
# move windows
|
(key: direction: "SUPERCONTROL,${key},movewindoworgroup,${direction}")
|
||||||
(lib.mapAttrsToList (
|
directions) ++
|
||||||
key: direction: "SUPERCONTROL,${key},movewindoworgroup,${direction}"
|
# move monitor focus
|
||||||
) directions)
|
(lib.mapAttrsToList
|
||||||
++
|
(key: direction: "SUPERALT,${key},focusmonitor,${direction}")
|
||||||
# move monitor focus
|
directions) ++
|
||||||
(lib.mapAttrsToList (key: direction: "SUPERALT,${key},focusmonitor,${direction}") directions)
|
# move workspace to other monitor
|
||||||
++
|
(lib.mapAttrsToList (key: direction:
|
||||||
# move workspace to other monitor
|
"SUPERALTSHIFT,${key},movecurrentworkspacetomonitor,${direction}")
|
||||||
(lib.mapAttrsToList (
|
directions) ++
|
||||||
key: direction: "SUPERALTSHIFT,${key},movecurrentworkspacetomonitor,${direction}"
|
# launcher
|
||||||
) directions)
|
(let wofi = lib.getExe pkgs.wofi;
|
||||||
++
|
in lib.optionals config.programs.wofi.enable [
|
||||||
# launcher
|
"SUPER,Space,exec,${wofi} -S drun -W 20% -H 15%"
|
||||||
(
|
"SHIFTSUPER,Space,exec,${wofi} -S run -W 20% -H 15%"
|
||||||
let
|
]);
|
||||||
wofi = lib.getExe pkgs.wofi;
|
|
||||||
in
|
|
||||||
lib.optionals config.programs.wofi.enable [
|
|
||||||
"SUPER,Space,exec,${wofi} -S drun -W 20% -H 15%"
|
|
||||||
"SHIFTSUPER,Space,exec,${wofi} -S run -W 20% -H 15%"
|
|
||||||
]
|
|
||||||
);
|
|
||||||
|
|
||||||
monitor = map (
|
monitor = map (m:
|
||||||
m:
|
|
||||||
"${m.name},${
|
"${m.name},${
|
||||||
if m.enabled then
|
if m.enabled then
|
||||||
"${toString m.width}x${toString m.height}@${toString m.refreshRate},${m.position},${m.scale}"
|
"${toString m.width}x${toString m.height}@${
|
||||||
|
toString m.refreshRate
|
||||||
|
},${m.position},${m.scale}"
|
||||||
else
|
else
|
||||||
"disable"
|
"disable"
|
||||||
}"
|
}") config.monitors;
|
||||||
) config.monitors;
|
|
||||||
|
|
||||||
workspace = map (m: "name:${m.workspace},monitor:${m.name}") (
|
workspace = map (m: "name:${m.workspace},monitor:${m.name}")
|
||||||
lib.filter (m: m.enabled && m.workspace != null) config.monitors
|
(lib.filter (m: m.enabled && m.workspace != null) config.monitors);
|
||||||
);
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +1,13 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
let
|
let swaylock = "${config.programs.swaylock.package}/bin/swaylock";
|
||||||
swaylock = "${config.programs.swaylock.package}/bin/swaylock";
|
in {
|
||||||
in
|
|
||||||
{
|
|
||||||
services.swayidle = {
|
services.swayidle = {
|
||||||
enable = true;
|
enable = true;
|
||||||
systemdTarget = "graphical-session.target";
|
systemdTarget = "graphical-session.target";
|
||||||
events = [
|
events = [{
|
||||||
{
|
event = "before-sleep";
|
||||||
event = "before-sleep";
|
command = "${swaylock} --daemonize";
|
||||||
command = "${swaylock} --daemonize";
|
}];
|
||||||
}
|
|
||||||
];
|
|
||||||
# timeouts = [
|
# timeouts = [
|
||||||
# {
|
# {
|
||||||
# timeout = 4 * 60;
|
# timeout = 4 * 60;
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
|
||||||
programs.swaylock = {
|
programs.swaylock = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.swaylock-effects;
|
package = pkgs.swaylock-effects;
|
||||||
settings = {
|
settings = { effect-blur = "20x3"; };
|
||||||
effect-blur = "20x3";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: { home.packages = with pkgs; [ quassel ]; }
|
||||||
home.packages = with pkgs; [
|
|
||||||
quassel
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
|
||||||
programs.obs-studio = {
|
programs.obs-studio = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = with pkgs.obs-studio-plugins; [
|
plugins = with pkgs.obs-studio-plugins; [ obs-tuna ];
|
||||||
obs-tuna
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: { home.packages = with pkgs; [ vscode ]; }
|
||||||
{
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
vscode
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,10 +1,5 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
imports = [ ./mako.nix ./wofi.nix ./waybar.nix ];
|
||||||
imports = [
|
|
||||||
./mako.nix
|
|
||||||
./wofi.nix
|
|
||||||
./waybar.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
wf-recorder
|
wf-recorder
|
||||||
|
@ -19,12 +14,6 @@
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraPortals = [ pkgs.xdg-desktop-portal-wlr ];
|
extraPortals = [ pkgs.xdg-desktop-portal-wlr ];
|
||||||
config = {
|
config = { common = { default = [ "wlr" ]; }; };
|
||||||
common = {
|
|
||||||
default = [
|
|
||||||
"wlr"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }: {
|
||||||
{
|
|
||||||
services.mako = {
|
services.mako = {
|
||||||
enable = true;
|
enable = true;
|
||||||
font = lib.mkForce "${config.fontProfiles.regular.family} 12";
|
font = lib.mkForce "${config.fontProfiles.regular.family} 12";
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }: {
|
||||||
{
|
|
||||||
# additional deps for cava support
|
# additional deps for cava support
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [ iniparser fftw ];
|
||||||
iniparser
|
|
||||||
fftw
|
|
||||||
];
|
|
||||||
|
|
||||||
systemd.user.services.waybar = {
|
systemd.user.services.waybar = {
|
||||||
Unit.StartLimitBurst = 30;
|
Unit.StartLimitBurst = 30;
|
||||||
|
@ -21,40 +17,19 @@
|
||||||
margin-top = 10;
|
margin-top = 10;
|
||||||
margin-left = 20;
|
margin-left = 20;
|
||||||
margin-right = 20;
|
margin-right = 20;
|
||||||
modules-left = [
|
modules-left = [ "hyprland/workspaces" "hyprland/language" ];
|
||||||
"hyprland/workspaces"
|
|
||||||
"hyprland/language"
|
|
||||||
];
|
|
||||||
|
|
||||||
modules-center = [
|
modules-center = [ "cpu" "clock" "memory" ];
|
||||||
"cpu"
|
|
||||||
"clock"
|
|
||||||
"memory"
|
|
||||||
];
|
|
||||||
|
|
||||||
modules-right = [
|
modules-right = [ "mpris" "network" "pulseaudio" "battery" "tray" ];
|
||||||
"mpris"
|
|
||||||
"network"
|
|
||||||
"pulseaudio"
|
|
||||||
"battery"
|
|
||||||
"tray"
|
|
||||||
];
|
|
||||||
|
|
||||||
cpu = {
|
cpu = { format = "CPU {usage}%"; };
|
||||||
format = "CPU {usage}%";
|
|
||||||
};
|
|
||||||
|
|
||||||
memory = {
|
memory = { format = "MEM {}%"; };
|
||||||
format = "MEM {}%";
|
|
||||||
};
|
|
||||||
|
|
||||||
tray = {
|
tray = { spacing = 10; };
|
||||||
spacing = 10;
|
|
||||||
};
|
|
||||||
|
|
||||||
pulseaudio = {
|
pulseaudio = { format = "AUD {volume}%"; };
|
||||||
format = "AUD {volume}%";
|
|
||||||
};
|
|
||||||
|
|
||||||
network = {
|
network = {
|
||||||
format = "NET {ipaddr}";
|
format = "NET {ipaddr}";
|
||||||
|
@ -74,63 +49,60 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
style =
|
style = let inherit (config.lib.stylix.colors) withHashtag;
|
||||||
let
|
in ''
|
||||||
inherit (config.lib.stylix.colors) withHashtag;
|
* {
|
||||||
in
|
font-family: ${config.fontProfiles.bitmap.family}, ${config.fontProfiles.monospace.family};
|
||||||
''
|
font-size: 11pt;
|
||||||
* {
|
padding: 0;
|
||||||
font-family: ${config.fontProfiles.bitmap.family}, ${config.fontProfiles.monospace.family};
|
}
|
||||||
font-size: 11pt;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border-radius: 0.5em;
|
border-radius: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces {
|
#workspaces {
|
||||||
transition: background-color .5s, color .5s;
|
transition: background-color .5s, color .5s;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button {
|
#workspaces button {
|
||||||
padding: 0 6px;
|
padding: 0 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.active,
|
#workspaces button.active,
|
||||||
#workspaces button.focused {
|
#workspaces button.focused {
|
||||||
background-color: ${withHashtag.base05};
|
background-color: ${withHashtag.base05};
|
||||||
color: ${withHashtag.base00};
|
color: ${withHashtag.base00};
|
||||||
}
|
}
|
||||||
|
|
||||||
#cpu,
|
#cpu,
|
||||||
#memory {
|
#memory {
|
||||||
color: ${withHashtag.base04};
|
color: ${withHashtag.base04};
|
||||||
}
|
}
|
||||||
|
|
||||||
#mpris {
|
#mpris {
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
margin-right: 6px;
|
margin-right: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#tray {
|
#tray {
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
background-color: ${withHashtag.base02};
|
background-color: ${withHashtag.base02};
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio {
|
#pulseaudio {
|
||||||
color: ${withHashtag.base0D};
|
color: ${withHashtag.base0D};
|
||||||
}
|
}
|
||||||
|
|
||||||
#network {
|
#network {
|
||||||
color: ${withHashtag.base0C};
|
color: ${withHashtag.base0C};
|
||||||
}
|
}
|
||||||
|
|
||||||
#language {
|
#language {
|
||||||
color: ${withHashtag.base02};
|
color: ${withHashtag.base02};
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }: {
|
||||||
{
|
|
||||||
programs.wofi = {
|
programs.wofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
imports = [ ./php.nix ];
|
||||||
imports = [
|
|
||||||
./php.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
gcc
|
gcc
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# install php from nixpkgs because mise wants to compile it from source,
|
# install php from nixpkgs because mise wants to compile it from source,
|
||||||
# and that's a whole can of beans i'm not getting into
|
# and that's a whole can of beans i'm not getting into
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
home.packages = with pkgs; [ php83 ];
|
||||||
home.packages = with pkgs; [
|
|
||||||
php83
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,4 @@
|
||||||
{ inputs
|
{ inputs, lib, pkgs, config, outputs, ... }: {
|
||||||
, lib
|
|
||||||
, pkgs
|
|
||||||
, config
|
|
||||||
, outputs
|
|
||||||
, ...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nix-index-database.hmModules.nix-index
|
inputs.nix-index-database.hmModules.nix-index
|
||||||
inputs.stylix.homeManagerModules.stylix
|
inputs.stylix.homeManagerModules.stylix
|
||||||
|
@ -24,17 +17,12 @@
|
||||||
nix = {
|
nix = {
|
||||||
package = lib.mkDefault pkgs.nixVersions.nix_2_22;
|
package = lib.mkDefault pkgs.nixVersions.nix_2_22;
|
||||||
settings = {
|
settings = {
|
||||||
experimental-features = [
|
experimental-features = [ "nix-command" "flakes" ];
|
||||||
"nix-command"
|
|
||||||
"flakes"
|
|
||||||
];
|
|
||||||
warn-dirty = false;
|
warn-dirty = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = { home-manager.enable = true; };
|
||||||
home-manager.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -56,16 +44,15 @@
|
||||||
homeDirectory = lib.mkDefault "/home/${config.home.username}";
|
homeDirectory = lib.mkDefault "/home/${config.home.username}";
|
||||||
stateVersion = lib.mkDefault "24.05";
|
stateVersion = lib.mkDefault "24.05";
|
||||||
sessionPath = [ "$HOME/.local/bin" ];
|
sessionPath = [ "$HOME/.local/bin" ];
|
||||||
sessionVariables = {
|
sessionVariables = { FLAKE = "$HOME/nix-config"; };
|
||||||
FLAKE = "$HOME/nix-config";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
stylix = {
|
stylix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||||
image = pkgs.fetchurl {
|
image = pkgs.fetchurl {
|
||||||
url = "https://lds-img.finalfantasyxiv.com/h/d/gGA_a8kMXpsxZEOfW_MadG07_E.jpg";
|
url =
|
||||||
|
"https://lds-img.finalfantasyxiv.com/h/d/gGA_a8kMXpsxZEOfW_MadG07_E.jpg";
|
||||||
sha256 = "0d8b4031dnlrcd3wx63p19w5h5zc8z5fk2yqz0wv20m7gr62h8r0";
|
sha256 = "0d8b4031dnlrcd3wx63p19w5h5zc8z5fk2yqz0wv20m7gr62h8r0";
|
||||||
};
|
};
|
||||||
fonts = {
|
fonts = {
|
||||||
|
|
|
@ -1,6 +1 @@
|
||||||
{ ... }: {
|
{ ... }: { imports = [ ./global.nix ./features/desktop/font.nix ]; }
|
||||||
imports = [
|
|
||||||
./global.nix
|
|
||||||
./features/desktop/font.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
{
|
{ lib, config, ... }:
|
||||||
lib,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
let
|
||||||
mkFontOption = kind: {
|
mkFontOption = kind: {
|
||||||
family = lib.mkOption {
|
family = lib.mkOption {
|
||||||
|
@ -19,8 +15,7 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
cfg = config.fontProfiles;
|
cfg = config.fontProfiles;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
options.fontProfiles = {
|
options.fontProfiles = {
|
||||||
enable = lib.mkEnableOption "Whether to enable font profiles";
|
enable = lib.mkEnableOption "Whether to enable font profiles";
|
||||||
monospace = mkFontOption "monospace";
|
monospace = mkFontOption "monospace";
|
||||||
|
@ -30,10 +25,7 @@ in
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
fonts.fontconfig.enable = true;
|
fonts.fontconfig.enable = true;
|
||||||
home.packages = [
|
home.packages =
|
||||||
cfg.monospace.package
|
[ cfg.monospace.package cfg.regular.package cfg.bitmap.package ];
|
||||||
cfg.regular.package
|
|
||||||
cfg.bitmap.package
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,65 +1,54 @@
|
||||||
{
|
{ lib, config, ... }:
|
||||||
lib,
|
let inherit (lib) mkOption types;
|
||||||
config,
|
in {
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
inherit (lib) mkOption types;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.monitors = mkOption {
|
options.monitors = mkOption {
|
||||||
type = types.listOf (
|
type = types.listOf (types.submodule {
|
||||||
types.submodule {
|
options = {
|
||||||
options = {
|
name = mkOption {
|
||||||
name = mkOption {
|
type = types.str;
|
||||||
type = types.str;
|
example = "DP-1";
|
||||||
example = "DP-1";
|
|
||||||
};
|
|
||||||
primary = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = false;
|
|
||||||
};
|
|
||||||
width = mkOption {
|
|
||||||
type = types.int;
|
|
||||||
example = 1920;
|
|
||||||
};
|
|
||||||
height = mkOption {
|
|
||||||
type = types.int;
|
|
||||||
example = 1080;
|
|
||||||
};
|
|
||||||
refreshRate = mkOption {
|
|
||||||
type = types.int;
|
|
||||||
default = 60;
|
|
||||||
};
|
|
||||||
position = mkOption {
|
|
||||||
type = types.str;
|
|
||||||
default = "auto";
|
|
||||||
};
|
|
||||||
enabled = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = true;
|
|
||||||
};
|
|
||||||
workspace = mkOption {
|
|
||||||
type = types.nullOr types.str;
|
|
||||||
default = null;
|
|
||||||
};
|
|
||||||
scale = mkOption {
|
|
||||||
type = types.nullOr types.str;
|
|
||||||
default = "1";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
primary = mkOption {
|
||||||
);
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
};
|
||||||
|
width = mkOption {
|
||||||
|
type = types.int;
|
||||||
|
example = 1920;
|
||||||
|
};
|
||||||
|
height = mkOption {
|
||||||
|
type = types.int;
|
||||||
|
example = 1080;
|
||||||
|
};
|
||||||
|
refreshRate = mkOption {
|
||||||
|
type = types.int;
|
||||||
|
default = 60;
|
||||||
|
};
|
||||||
|
position = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "auto";
|
||||||
|
};
|
||||||
|
enabled = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = true;
|
||||||
|
};
|
||||||
|
workspace = mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = null;
|
||||||
|
};
|
||||||
|
scale = mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = "1";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
});
|
||||||
default = [ ];
|
default = [ ];
|
||||||
};
|
};
|
||||||
config = {
|
config = {
|
||||||
assertions = [
|
assertions = [{
|
||||||
{
|
assertion = ((lib.length config.monitors) != 0)
|
||||||
assertion =
|
-> ((lib.length (lib.filter (m: m.primary) config.monitors)) == 1);
|
||||||
((lib.length config.monitors) != 0)
|
message = "Exactly one monitor must be set to primary.";
|
||||||
-> ((lib.length (lib.filter (m: m.primary) config.monitors)) == 1);
|
}];
|
||||||
message = "Exactly one monitor must be set to primary.";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -8,7 +7,5 @@
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
wireplumber.enable = true;
|
wireplumber.enable = true;
|
||||||
};
|
};
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [ pavucontrol ];
|
||||||
pavucontrol
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1 @@
|
||||||
{ ... }:
|
{ ... }: { hardware.bluetooth = { enable = true; }; }
|
||||||
{
|
|
||||||
hardware.bluetooth = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,11 +1,5 @@
|
||||||
{ lib, pkgs, ... }:
|
{ lib, pkgs, ... }: {
|
||||||
{
|
imports = [ ./audio.nix ./tailscale.nix ./bluetooth.nix ./printing.nix ];
|
||||||
imports = [
|
|
||||||
./audio.nix
|
|
||||||
./tailscale.nix
|
|
||||||
./bluetooth.nix
|
|
||||||
./printing.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
# use nix version 2.22
|
# use nix version 2.22
|
||||||
nix = {
|
nix = {
|
||||||
|
@ -13,11 +7,7 @@
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
auto-optimise-store = lib.mkDefault true;
|
auto-optimise-store = lib.mkDefault true;
|
||||||
experimental-features = [
|
experimental-features = [ "nix-command" "flakes" "ca-derivations" ];
|
||||||
"nix-command"
|
|
||||||
"flakes"
|
|
||||||
"ca-derivations"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -33,9 +23,7 @@
|
||||||
|
|
||||||
# use a tmpfs
|
# use a tmpfs
|
||||||
boot.tmp.useTmpfs = true;
|
boot.tmp.useTmpfs = true;
|
||||||
systemd.services.nix-daemon = {
|
systemd.services.nix-daemon = { environment.TMPDIR = "/var/tmp"; };
|
||||||
environment.TMPDIR = "/var/tmp";
|
|
||||||
};
|
|
||||||
|
|
||||||
# use fstrim for ssds
|
# use fstrim for ssds
|
||||||
services.fstrim.enable = true;
|
services.fstrim.enable = true;
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ ... }:
|
{ ... }: {
|
||||||
{
|
|
||||||
services.printing.enable = true;
|
services.printing.enable = true;
|
||||||
|
|
||||||
services.avahi = {
|
services.avahi = {
|
||||||
|
|
|
@ -1,6 +1 @@
|
||||||
{ ... }:
|
{ ... }: { services.tailscale = { enable = true; }; }
|
||||||
{
|
|
||||||
services.tailscale = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,7 +1 @@
|
||||||
{ ... }:
|
{ ... }: { imports = [ ./steam.nix ./flatpak.nix ]; }
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./steam.nix
|
|
||||||
./flatpak.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,4 +1 @@
|
||||||
{ ... }:
|
{ ... }: { services.flatpak.enable = true; }
|
||||||
{
|
|
||||||
services.flatpak.enable = true;
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ ... }:
|
{ ... }: {
|
||||||
{
|
|
||||||
security.pam.services.swaylock = { };
|
security.pam.services.swaylock = { };
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
{
|
|
||||||
services.displayManager.sddm.enable = true;
|
services.displayManager.sddm.enable = true;
|
||||||
services.displayManager.sddm.wayland.enable = true;
|
services.displayManager.sddm.wayland.enable = true;
|
||||||
services.desktopManager.plasma6.enable = true;
|
services.desktopManager.plasma6.enable = true;
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ ... }:
|
{ ... }: {
|
||||||
{
|
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
remotePlay.openFirewall = true;
|
remotePlay.openFirewall = true;
|
||||||
|
|
|
@ -1,10 +1,4 @@
|
||||||
{ inputs
|
{ inputs, lib, config, pkgs, ... }: {
|
||||||
, lib
|
|
||||||
, config
|
|
||||||
, pkgs
|
|
||||||
, ...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
../common
|
../common
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
@ -12,27 +6,20 @@
|
||||||
../desktop/plasma.nix
|
../desktop/plasma.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = { config = { allowUnfree = true; }; };
|
||||||
config = {
|
|
||||||
allowUnfree = true;
|
nix = let flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs;
|
||||||
|
in {
|
||||||
|
settings = {
|
||||||
|
flake-registry = "";
|
||||||
|
nix-path = config.nix.nixPath;
|
||||||
};
|
};
|
||||||
|
channel.enable = false;
|
||||||
|
|
||||||
|
registry = lib.mapAttrs (_: flake: { inherit flake; }) flakeInputs;
|
||||||
|
nixPath = lib.mapAttrsToList (n: _: "${n}=flake:${n}") flakeInputs;
|
||||||
};
|
};
|
||||||
|
|
||||||
nix =
|
|
||||||
let
|
|
||||||
flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
settings = {
|
|
||||||
flake-registry = "";
|
|
||||||
nix-path = config.nix.nixPath;
|
|
||||||
};
|
|
||||||
channel.enable = false;
|
|
||||||
|
|
||||||
registry = lib.mapAttrs (_: flake: { inherit flake; }) flakeInputs;
|
|
||||||
nixPath = lib.mapAttrsToList (n: _: "${n}=flake:${n}") flakeInputs;
|
|
||||||
};
|
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
@ -64,17 +51,12 @@
|
||||||
lu = {
|
lu = {
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [
|
extraGroups = [ "wheel" "storage" ];
|
||||||
"wheel"
|
|
||||||
"storage"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# network stuff
|
# network stuff
|
||||||
networking.networkmanager = {
|
networking.networkmanager = { enable = true; };
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# fish shell
|
# fish shell
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
|
@ -89,9 +71,9 @@
|
||||||
# enable ppd specifically for the framework
|
# enable ppd specifically for the framework
|
||||||
services.power-profiles-daemon.enable = true;
|
services.power-profiles-daemon.enable = true;
|
||||||
|
|
||||||
boot.kernelParams =
|
boot.kernelParams = lib.optionals
|
||||||
lib.optionals (lib.versionOlder config.boot.kernelPackages.kernel.version "6.8")
|
(lib.versionOlder config.boot.kernelPackages.kernel.version "6.8")
|
||||||
[ "rtc_cmos.use_acpi_alarm=1" ];
|
[ "rtc_cmos.use_acpi_alarm=1" ];
|
||||||
|
|
||||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
|
|
|
@ -1,25 +1,13 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{
|
{ config, lib, modulesPath, ... }:
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
modulesPath,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules =
|
||||||
"nvme"
|
[ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod" ];
|
||||||
"xhci_pci"
|
|
||||||
"thunderbolt"
|
|
||||||
"usb_storage"
|
|
||||||
"sd_mod"
|
|
||||||
];
|
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
@ -32,10 +20,7 @@
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
device = "/dev/disk/by-uuid/6157-ADC8";
|
device = "/dev/disk/by-uuid/6157-ADC8";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
"fmask=0022"
|
|
||||||
"dmask=0022"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
@ -48,5 +33,6 @@
|
||||||
# networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true;
|
# networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true;
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.amd.updateMicrocode =
|
||||||
|
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,10 @@
|
||||||
{ ... }:
|
{ ... }: {
|
||||||
{
|
|
||||||
services.postgresql = {
|
services.postgresql = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
ensureUsers = [
|
ensureUsers = [{
|
||||||
{
|
name = "lu";
|
||||||
name = "lu";
|
ensureClauses = { superuser = true; };
|
||||||
ensureClauses = {
|
}];
|
||||||
superuser = true;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,27 +1,13 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{
|
{ config, lib, pkgs, modulesPath, ... }:
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
modulesPath,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules =
|
||||||
"xhci_pci"
|
[ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
|
||||||
"ahci"
|
|
||||||
"nvme"
|
|
||||||
"usb_storage"
|
|
||||||
"usbhid"
|
|
||||||
"sd_mod"
|
|
||||||
];
|
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
@ -34,15 +20,11 @@
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
device = "/dev/disk/by-uuid/5704-1642";
|
device = "/dev/disk/by-uuid/5704-1642";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [
|
options = [ "fmask=0077" "dmask=0077" ];
|
||||||
"fmask=0077"
|
|
||||||
"dmask=0077"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [
|
swapDevices =
|
||||||
{ device = "/dev/disk/by-uuid/d52209e9-f625-46a9-800a-88598ed6fcd5"; }
|
[{ device = "/dev/disk/by-uuid/d52209e9-f625-46a9-800a-88598ed6fcd5"; }];
|
||||||
];
|
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||||
|
@ -53,5 +35,6 @@
|
||||||
# networking.interfaces.wlp6s0.useDHCP = lib.mkDefault true;
|
# networking.interfaces.wlp6s0.useDHCP = lib.mkDefault true;
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode =
|
||||||
|
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# This file defines overlays
|
# This file defines overlays
|
||||||
{ inputs, ... }:
|
{ inputs, ... }: {
|
||||||
{
|
|
||||||
# This one brings our custom packages from the 'pkgs' directory
|
# This one brings our custom packages from the 'pkgs' directory
|
||||||
additions = final: _prev: import ../pkgs final.pkgs;
|
additions = final: _prev: import ../pkgs final.pkgs;
|
||||||
|
|
||||||
|
@ -10,17 +9,18 @@
|
||||||
modifications = final: prev: {
|
modifications = final: prev: {
|
||||||
zed-editor = final.callPackage prev.zed-editor.override {
|
zed-editor = final.callPackage prev.zed-editor.override {
|
||||||
rustPlatform = final.rustPlatform // {
|
rustPlatform = final.rustPlatform // {
|
||||||
buildRustPackage = args: final.rustPlatform.buildRustPackage (args // {
|
buildRustPackage = args:
|
||||||
patches = (args.patches or [ ] ++ [
|
final.rustPlatform.buildRustPackage (args // {
|
||||||
./zed-use-custom-cosmic-text.patch
|
patches =
|
||||||
]);
|
(args.patches or [ ] ++ [ ./zed-use-custom-cosmic-text.patch ]);
|
||||||
cargoLock = {
|
cargoLock = {
|
||||||
lockFile = ./zed.Cargo.lock;
|
lockFile = ./zed.Cargo.lock;
|
||||||
outputHashes = args.cargoLock.outputHashes // {
|
outputHashes = args.cargoLock.outputHashes // {
|
||||||
"cosmic-text-0.11.2" = "sha256-ld9mrvtZIEftenn1D5IuXFQikJU2GAil6MCsrIh9o14=";
|
"cosmic-text-0.11.2" =
|
||||||
|
"sha256-ld9mrvtZIEftenn1D5IuXFQikJU2GAil6MCsrIh9o14=";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
});
|
||||||
});
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# Custom packages, that can be defined similarly to ones from nixpkgs
|
# Custom packages, that can be defined similarly to ones from nixpkgs
|
||||||
# You can build them using 'nix build .#example'
|
# You can build them using 'nix build .#example'
|
||||||
pkgs: {
|
pkgs:
|
||||||
|
{
|
||||||
# example = pkgs.callPackage ./example { };
|
# example = pkgs.callPackage ./example { };
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,27 +3,24 @@
|
||||||
|
|
||||||
inputs.deploy-rs.url = "github:serokell/deploy-rs";
|
inputs.deploy-rs.url = "github:serokell/deploy-rs";
|
||||||
|
|
||||||
outputs =
|
outputs = { self, nixpkgs, deploy-rs, }: {
|
||||||
{ self
|
nixosConfigurations.lunasa = nixpkgs.lib.nixosSystem {
|
||||||
, nixpkgs
|
system = "x86_64-linux";
|
||||||
, deploy-rs
|
modules = [ ./lunasa/configuration.nix ];
|
||||||
,
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
nixosConfigurations.lunasa = nixpkgs.lib.nixosSystem {
|
|
||||||
system = "x86_64-linux";
|
|
||||||
modules = [ ./lunasa/configuration.nix ];
|
|
||||||
};
|
|
||||||
|
|
||||||
deploy.nodes.lunasa = {
|
|
||||||
hostname = "lunasa";
|
|
||||||
sshUser = "root";
|
|
||||||
profiles.system = {
|
|
||||||
user = "root";
|
|
||||||
path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.lunasa;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
deploy.nodes.lunasa = {
|
||||||
|
hostname = "lunasa";
|
||||||
|
sshUser = "root";
|
||||||
|
profiles.system = {
|
||||||
|
user = "root";
|
||||||
|
path = deploy-rs.lib.x86_64-linux.activate.nixos
|
||||||
|
self.nixosConfigurations.lunasa;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
checks =
|
||||||
|
builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy)
|
||||||
|
deploy-rs.lib;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ modulesPath, pkgs, lib, ... }:
|
{ modulesPath, pkgs, lib, ... }: {
|
||||||
{
|
|
||||||
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
||||||
|
|
||||||
networking.hostName = "lunasa";
|
networking.hostName = "lunasa";
|
||||||
|
@ -7,12 +6,8 @@
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
boot.tmp.cleanOnBoot = true;
|
boot.tmp.cleanOnBoot = true;
|
||||||
boot.loader.grub.device = "/dev/sda";
|
boot.loader.grub.device = "/dev/sda";
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules =
|
||||||
"ata_piix"
|
[ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
|
||||||
"uhci_hcd"
|
|
||||||
"xen_blkfront"
|
|
||||||
"vmw_pvscsi"
|
|
||||||
];
|
|
||||||
boot.initrd.kernelModules = [ "nvme" ];
|
boot.initrd.kernelModules = [ "nvme" ];
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
device = "/dev/sda1";
|
device = "/dev/sda1";
|
||||||
|
@ -24,17 +19,13 @@
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
auto-optimise-store = lib.mkDefault true;
|
auto-optimise-store = lib.mkDefault true;
|
||||||
experimental-features = [
|
experimental-features = [ "nix-command" "flakes" "ca-derivations" ];
|
||||||
"nix-command"
|
|
||||||
"flakes"
|
|
||||||
"ca-derivations"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
users.users.root.openssh.authorizedKeys.keys = [
|
users.users.root.openssh.authorizedKeys.keys = [
|
||||||
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKoDv47WF/WGsIn47xdmkNeScQSF3yTzLhaZoR+kFUJy''
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKoDv47WF/WGsIn47xdmkNeScQSF3yTzLhaZoR+kFUJy"
|
||||||
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOXWOPpEDdVUQEFLucXbxmOhW64QXbCu6lF8vRLlKyoT''
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOXWOPpEDdVUQEFLucXbxmOhW64QXbCu6lF8vRLlKyoT"
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [
|
networking.firewall.allowedTCPPorts = [
|
||||||
|
@ -64,9 +55,7 @@
|
||||||
registration = {
|
registration = {
|
||||||
allow-before-connect = true;
|
allow-before-connect = true;
|
||||||
bcrypt-cost = 4;
|
bcrypt-cost = 4;
|
||||||
email-verification = {
|
email-verification = { enabled = false; };
|
||||||
enabled = false;
|
|
||||||
};
|
|
||||||
enabled = true;
|
enabled = true;
|
||||||
throttling = {
|
throttling = {
|
||||||
duration = "10m";
|
duration = "10m";
|
||||||
|
@ -77,9 +66,7 @@
|
||||||
};
|
};
|
||||||
channels = {
|
channels = {
|
||||||
default-modes = "+ntC";
|
default-modes = "+ntC";
|
||||||
registration = {
|
registration = { enabled = true; };
|
||||||
enabled = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
datastore = {
|
datastore = {
|
||||||
autoupgrade = true;
|
autoupgrade = true;
|
||||||
|
@ -103,10 +90,7 @@
|
||||||
};
|
};
|
||||||
tagmsg-storage = {
|
tagmsg-storage = {
|
||||||
default = false;
|
default = false;
|
||||||
whitelist = [
|
whitelist = [ "+draft/react" "+react" ];
|
||||||
"+draft/react"
|
|
||||||
"+react"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
znc-maxmessages = 2048;
|
znc-maxmessages = 2048;
|
||||||
};
|
};
|
||||||
|
@ -118,34 +102,26 @@
|
||||||
nicklen = 32;
|
nicklen = 32;
|
||||||
topiclen = 390;
|
topiclen = 390;
|
||||||
};
|
};
|
||||||
network = {
|
network = { name = "linacastellane"; };
|
||||||
name = "linacastellane";
|
|
||||||
};
|
|
||||||
server = {
|
server = {
|
||||||
casemapping = "permissive";
|
casemapping = "permissive";
|
||||||
check-ident = false;
|
check-ident = false;
|
||||||
enforce-utf = true;
|
enforce-utf = true;
|
||||||
enforce-utf8 = true;
|
enforce-utf8 = true;
|
||||||
forward-confirm-hostnames = false;
|
forward-confirm-hostnames = false;
|
||||||
ip-cloaking = {
|
ip-cloaking = { enabled = false; };
|
||||||
enabled = false;
|
|
||||||
};
|
|
||||||
ip-limits = {
|
ip-limits = {
|
||||||
count = false;
|
count = false;
|
||||||
throttle = false;
|
throttle = false;
|
||||||
};
|
};
|
||||||
listeners = {
|
listeners = {
|
||||||
":6667" = { };
|
":6667" = { };
|
||||||
"127.0.0.1:8067" = {
|
"127.0.0.1:8067" = { websocket = true; };
|
||||||
websocket = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
lookup-hostnames = false;
|
lookup-hostnames = false;
|
||||||
max-sendq = "1M";
|
max-sendq = "1M";
|
||||||
name = "chat.lina.cool";
|
name = "chat.lina.cool";
|
||||||
relaymsg = {
|
relaymsg = { enabled = false; };
|
||||||
enabled = false;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
oper-classes = {
|
oper-classes = {
|
||||||
"chat-moderator" = {
|
"chat-moderator" = {
|
||||||
|
@ -165,20 +141,15 @@
|
||||||
"server-admin" = {
|
"server-admin" = {
|
||||||
title = "Server Admin";
|
title = "Server Admin";
|
||||||
extends = "chat-moderator";
|
extends = "chat-moderator";
|
||||||
capabilities = [
|
capabilities =
|
||||||
"rehash"
|
[ "rehash" "accreg" "chanreg" "history" "defcon" "massmessage" ];
|
||||||
"accreg"
|
|
||||||
"chanreg"
|
|
||||||
"history"
|
|
||||||
"defcon"
|
|
||||||
"massmessage"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
opers = {
|
opers = {
|
||||||
admin = {
|
admin = {
|
||||||
class = "server-admin";
|
class = "server-admin";
|
||||||
password = "$2a$04$uSnmJ2i4AVYR.z/kpCirsuNQGpFLUzsmIogK6qvc9mvf8UMDKjTPG";
|
password =
|
||||||
|
"$2a$04$uSnmJ2i4AVYR.z/kpCirsuNQGpFLUzsmIogK6qvc9mvf8UMDKjTPG";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -222,13 +193,11 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
internalInterfaces = [ "enp1s0" ];
|
internalInterfaces = [ "enp1s0" ];
|
||||||
externalInterface = "tailscale0";
|
externalInterface = "tailscale0";
|
||||||
forwardPorts = [
|
forwardPorts = [{
|
||||||
{
|
destination = "100.66.105.22:25565";
|
||||||
destination = "100.66.105.22:25565";
|
proto = "tcp";
|
||||||
proto = "tcp";
|
sourcePort = 25565;
|
||||||
sourcePort = 25565;
|
}];
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
|
|
27
shell.nix
27
shell.nix
|
@ -1,23 +1,14 @@
|
||||||
# Shell for bootstrapping flake-enabled nix and other tooling
|
# Shell for bootstrapping flake-enabled nix and other tooling
|
||||||
{
|
{ pkgs ? let
|
||||||
pkgs ?
|
lock =
|
||||||
let
|
(builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.nixpkgs.locked;
|
||||||
lock = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.nixpkgs.locked;
|
nixpkgs = fetchTarball {
|
||||||
nixpkgs = fetchTarball {
|
url = "https://github.com/nixos/nixpkgs/archive/${lock.rev}.tar.gz";
|
||||||
url = "https://github.com/nixos/nixpkgs/archive/${lock.rev}.tar.gz";
|
sha256 = lock.narHash;
|
||||||
sha256 = lock.narHash;
|
};
|
||||||
};
|
in import nixpkgs { overlays = [ ]; }, ... }: {
|
||||||
in
|
|
||||||
import nixpkgs { overlays = [ ]; },
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
NIX_CONFIG = "extra-experimental-features = nix-command flakes";
|
NIX_CONFIG = "extra-experimental-features = nix-command flakes";
|
||||||
nativeBuildInputs = with pkgs; [
|
nativeBuildInputs = with pkgs; [ home-manager git nh ];
|
||||||
home-manager
|
|
||||||
git
|
|
||||||
nh
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue