Changed so many things I don't even remember
This commit is contained in:
parent
e1f6679248
commit
dd2c06dba5
6 changed files with 59 additions and 19 deletions
22
hosts/common/console.nix
Normal file
22
hosts/common/console.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ specialArgs, inputs, config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
console.colors = [
|
||||
"002b36"
|
||||
"dc322f"
|
||||
"859900"
|
||||
"b58900"
|
||||
"268bd2"
|
||||
"d33682"
|
||||
"2aa198"
|
||||
"eee8d5"
|
||||
"002b36"
|
||||
"cb4b16"
|
||||
"586e75"
|
||||
"657b83"
|
||||
"839496"
|
||||
"6c71c4"
|
||||
"93a1a1"
|
||||
"fdf6e3"
|
||||
];
|
||||
}
|
||||
|
|
@ -12,7 +12,8 @@
|
|||
wireplumber.enable = true;
|
||||
};
|
||||
xserver = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
autorun = false;
|
||||
layout = "us";
|
||||
xkbVariant = "altgr-intl";
|
||||
excludePackages = ( with pkgs; [ xterm ]);
|
||||
|
|
@ -20,21 +21,36 @@
|
|||
enable = true;
|
||||
excludePackages = ( with pkgs.plasma5Packages; [ elisa oxygen khelpcenter ]);
|
||||
};
|
||||
displayManager = {
|
||||
defaultSession = "plasmawayland";
|
||||
sddm = {
|
||||
enable = true;
|
||||
autoNumlock = true;
|
||||
settings = {
|
||||
Theme = {
|
||||
CursorTheme = "breeze_cursors";
|
||||
};
|
||||
X11 = {
|
||||
UserAuthFile = ".local/share/sddm/Xauthority";
|
||||
};
|
||||
};
|
||||
};
|
||||
# displayManager = {
|
||||
# defaultSession = "plasmawayland";
|
||||
# sddm = {
|
||||
# enable = true;
|
||||
# autoNumlock = true;
|
||||
# settings = {
|
||||
# Theme = {
|
||||
# CursorTheme = "breeze_cursors";
|
||||
# };
|
||||
# X11 = {
|
||||
# UserAuthFile = ".local/share/sddm/Xauthority";
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
};
|
||||
greetd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
default_session.command = "${pkgs.greetd.tuigreet}/bin/tuigreet --remember --asterisks --time --greeting \"Welcome to Nix\" --cmd ${pkgs.plasma-workspace}/bin/startplasma-wayland";
|
||||
# initial_session = {
|
||||
# command = "${pkgs.plasma-workspace}/bin/startplasma-wayland";
|
||||
# user = "user";
|
||||
# };
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.etc."greetd/environments".text = ''
|
||||
startplasma-wayland
|
||||
fish
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{ specialArgs, inputs, config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
imports = [
|
||||
# Host-common imports
|
||||
../common
|
||||
# Desktop-common imports
|
||||
|
|
|
|||
|
|
@ -66,6 +66,8 @@
|
|||
motd = "Bem-vindo a Alexandria";
|
||||
difficulty = "hard";
|
||||
gamemode = "survival";
|
||||
online-mode = "false";
|
||||
spawn-protection = "0";
|
||||
};
|
||||
dataDir = "/data/minecraft";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue