Added dyonisos host
This commit is contained in:
parent
b1e4cd6b6e
commit
adb54eafba
6 changed files with 194 additions and 0 deletions
78
hosts/dyonisos/configuration.nix
Normal file
78
hosts/dyonisos/configuration.nix
Normal file
|
@ -0,0 +1,78 @@
|
|||
{ config, inputs, pkgs, ... }:
|
||||
{
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
time.timeZone = "Europe/Zurich";
|
||||
security.sudo.package = pkgs.sudo.override { withInsults = true; };
|
||||
security.polkit.enable = true;
|
||||
programs.kdeconnect.enable = true;
|
||||
myOptions = {
|
||||
other = {
|
||||
system = {
|
||||
hostname = "dyonisos";
|
||||
username = "lars";
|
||||
};
|
||||
home-manager = {
|
||||
enable = true;
|
||||
enableDirenv = true;
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
vesktop.enable = true;
|
||||
btop.enable = true;
|
||||
mpv.enable = true;
|
||||
schizofox.enable = true;
|
||||
|
||||
zsh = {
|
||||
enable = true;
|
||||
profiling = false;
|
||||
extraAliases = {
|
||||
cls = "clear";
|
||||
cd = "z";
|
||||
};
|
||||
};
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
userName = "LarsZauberer";
|
||||
userEmail = "wasser.ian@gmail.com";
|
||||
defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
pipewire.enable = true;
|
||||
};
|
||||
|
||||
themes = {
|
||||
cursor = {
|
||||
enable = false;
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Classic";
|
||||
size = 24;
|
||||
};
|
||||
gtk = {
|
||||
enable = false;
|
||||
package = pkgs.catppuccin-gtk;
|
||||
name = "Catppuccin-Mocha-Standard-Green-Dark";
|
||||
variant = "mocha";
|
||||
accentColour = "green";
|
||||
iconTheme = {
|
||||
name = "Papirus-Dark";
|
||||
package = pkgs.catppuccin-papirus-folders;
|
||||
};
|
||||
};
|
||||
qt = {
|
||||
enable = false;
|
||||
package = pkgs.catppuccin-kde;
|
||||
name = "Catppuccin-Mocha-Dark";
|
||||
variant = "mocha";
|
||||
accentColour = "green";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
console.keyMap = "sg";
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue