multi host maybe
This commit is contained in:
43
configuration-pc.nix
Normal file
43
configuration-pc.nix
Normal file
@@ -0,0 +1,43 @@
|
||||
{ config, lib, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
networking.hostName = "HACKSTATION"; # Define your hostname.
|
||||
|
||||
# Opengl and vulkan
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
intel-vaapi-driver
|
||||
libva-vdpau-driver
|
||||
];
|
||||
};
|
||||
|
||||
# services.displayManager.sddm = {
|
||||
# enable = true;
|
||||
# theme = "catppuccin-mocha-mauve";
|
||||
# package = pkgs.kdePackages.sddm;
|
||||
# };
|
||||
|
||||
services.getty.autologinUser = "user01"
|
||||
|
||||
# Catppuccin sddm theme
|
||||
# (pkgs.catppuccin-sddm.override {
|
||||
# flavor = "mocha";
|
||||
# font = "Fira Mono Nerd Font";
|
||||
# fontSize = "11";
|
||||
# background = null;
|
||||
# })
|
||||
|
||||
# Local User
|
||||
users.users.user01 = {
|
||||
extraGroups = [ ];
|
||||
packages = with pkgs; [
|
||||
# Ricing
|
||||
|
||||
# Terminal
|
||||
|
||||
# Apps
|
||||
];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user