its time to merge to master... its too big now xD #76

Open
gortium wants to merge 160 commits from uconsole-cm5-incremental into master
22 changed files with 1007 additions and 176 deletions
Showing only changes of commit 088a82d730 - Show all commits

View File

@@ -1,5 +1,8 @@
{ pkgs, inputs, config, keys, ... }: {
home-manager.users.gortium = import ./home.nix;
home-manager.extraSpecialArgs = {
hostName = config.networking.hostName;
};
users.users.gortium = {
isNormalUser = true;
extraGroups = [ "wheel" "docker" "video" "render"];

View File

@@ -1,8 +1,8 @@
{ pkgs, lib, config, inputs, ... }:
{ pkgs, lib, config, inputs, hostName, ... }:
let
dotfiles = ./assets/dotfiles;
isUconsole = config.networking.hostName == "uConsole";
isUconsole = hostName == "uConsole";
in {
home.username = "gortium";
home.homeDirectory = "/home/gortium";