renamed hosts and working on multi user conf
This commit is contained in:
parent
a603eb08a4
commit
f7891e1f30
21 changed files with 208 additions and 75 deletions
49
hosts/ulmo/default.nix
Normal file
49
hosts/ulmo/default.nix
Normal file
|
@ -0,0 +1,49 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
imports = [ ./hardware.nix ];
|
||||
|
||||
fileSystems."/var/media_from_conf" = {
|
||||
device = "/dev/disk/by-label/data";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
modules = {
|
||||
themes = {
|
||||
enable = true;
|
||||
theme = "everforest";
|
||||
polarity = "dark";
|
||||
};
|
||||
|
||||
networking.enable = true;
|
||||
networking.ssh.enable = true;
|
||||
|
||||
services = {
|
||||
enable = true;
|
||||
media.enable = true;
|
||||
|
||||
games = {
|
||||
minecraft.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
desktop = {
|
||||
plasma.enable = true;
|
||||
type = "wayland";
|
||||
|
||||
terminal = {
|
||||
default = "alacritty";
|
||||
alacritty.enable = true;
|
||||
};
|
||||
|
||||
editors = {
|
||||
default = "nano";
|
||||
nano.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
shell = {
|
||||
default = "zsh";
|
||||
corePkgs.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue