Move stuff, rm nix-gaming
This commit is contained in:
parent
9afb7422a8
commit
ec1251c8f7
13 changed files with 22 additions and 26 deletions
1
clients/quadraticpc/name.nix
Executable file
1
clients/quadraticpc/name.nix
Executable file
|
@ -0,0 +1 @@
|
||||||
|
{networking.hostName = "quadraticpc";}
|
1
clients/quadraticserver/name.nix
Normal file
1
clients/quadraticserver/name.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{networking.hostName = "quadraticserver";}
|
10
clients/quadraticserver/ssh.nix
Normal file
10
clients/quadraticserver/ssh.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
services.openssh = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
PasswordAuthentication = true;
|
||||||
|
AllowUsers = ["quadradical"];
|
||||||
|
PermitRootLogin = "no";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
1
clients/quadtop/name.nix
Executable file
1
clients/quadtop/name.nix
Executable file
|
@ -0,0 +1 @@
|
||||||
|
{networking.hostName = "quadtop";}
|
1
quadtop/configuration.nix → clients/quadtop/nvidia.nix
Executable file → Normal file
1
quadtop/configuration.nix → clients/quadtop/nvidia.nix
Executable file → Normal file
|
@ -19,5 +19,4 @@
|
||||||
programs.gamemode.enable = true;
|
programs.gamemode.enable = true;
|
||||||
environment.sessionVariables.GAMEMODERUNEXEC = "nvidia-offload";
|
environment.sessionVariables.GAMEMODERUNEXEC = "nvidia-offload";
|
||||||
services.xserver.videoDrivers = ["nvidia"];
|
services.xserver.videoDrivers = ["nvidia"];
|
||||||
networking.hostName = "quadtop";
|
|
||||||
}
|
}
|
|
@ -10,7 +10,6 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
stylix.url = "github:danth/stylix";
|
stylix.url = "github:danth/stylix";
|
||||||
nix-gaming.url = "github:fufexan/nix-gaming";
|
|
||||||
firefox-gnome-theme = {
|
firefox-gnome-theme = {
|
||||||
url = "github:rafaelmardojai/firefox-gnome-theme";
|
url = "github:rafaelmardojai/firefox-gnome-theme";
|
||||||
flake = false;
|
flake = false;
|
||||||
|
@ -42,9 +41,8 @@
|
||||||
[
|
[
|
||||||
./wrappers
|
./wrappers
|
||||||
inputs.agenix.nixosModules.default
|
inputs.agenix.nixosModules.default
|
||||||
inputs.nix-gaming.nixosModules.pipewireLowLatency
|
|
||||||
]
|
]
|
||||||
++ dirFiles ".nix" "${inputs.self}/${hostname}"
|
++ dirFiles ".nix" "${./clients}/${hostname}"
|
||||||
++ dirFiles ".nix" ./modules/common
|
++ dirFiles ".nix" ./modules/common
|
||||||
++ opt isDesktop (
|
++ opt isDesktop (
|
||||||
(dirFiles ".nix" ./modules/common-desktop)
|
(dirFiles ".nix" ./modules/common-desktop)
|
||||||
|
|
|
@ -1,12 +1,6 @@
|
||||||
{
|
{pkgs, ...}: {
|
||||||
pkgs,
|
|
||||||
inputs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
services.xserver.excludePackages = [pkgs.xterm];
|
services.xserver.excludePackages = [pkgs.xterm];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
fd
|
|
||||||
tldr
|
|
||||||
tuba
|
tuba
|
||||||
gimp
|
gimp
|
||||||
deno
|
deno
|
||||||
|
@ -16,8 +10,6 @@
|
||||||
aspell
|
aspell
|
||||||
muzika
|
muzika
|
||||||
fractal
|
fractal
|
||||||
killall
|
|
||||||
ripgrep
|
|
||||||
foliate
|
foliate
|
||||||
inkscape
|
inkscape
|
||||||
r2modman
|
r2modman
|
||||||
|
@ -33,6 +25,5 @@
|
||||||
android-studio
|
android-studio
|
||||||
nexusmods-app-unfree
|
nexusmods-app-unfree
|
||||||
hunspellDicts.en_CA-large
|
hunspellDicts.en_CA-large
|
||||||
inputs.nix-gaming.packages.${system}.wine-ge
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
nix.settings = {
|
|
||||||
substituters = ["https://nix-gaming.cachix.org"];
|
|
||||||
trusted-public-keys = ["nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,3 +1,8 @@
|
||||||
{
|
{pkgs, ...}: {
|
||||||
# Todo
|
environment.systemPackages = with pkgs; [
|
||||||
|
fd
|
||||||
|
tldr
|
||||||
|
killall
|
||||||
|
ripgrep
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
imports = [./monitor.nix];
|
|
||||||
networking.hostName = "quadraticpc";
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue