Nixtime => main (#26)
* add users nix file * add element * add buld thing and config * remove hyper cuz broken and fix build script * Fix nix builds (keep em from explodin) * add flake * using flakes now I guess? * add hardware configuration for now I guess? * no homemanager yet * home manager module?
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
#let
|
||||
# home-manager = builtins.fetchTarball https://github.com/nix-community/home-manager/archive/release-25.11.tar.gz;
|
||||
#in
|
||||
{
|
||||
#imports = [(import "${home-manager}/nixos")];
|
||||
|
||||
users.users.qmoran = {
|
||||
isNormalUser = true;
|
||||
description = "quin";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
packages = with pkgs; [
|
||||
gh
|
||||
btop
|
||||
kdePackages.kate
|
||||
signal-desktop
|
||||
lazygit
|
||||
element-desktop
|
||||
];
|
||||
};
|
||||
|
||||
#home-manager.users.qmoran = { pkgs, ... }: {
|
||||
# home.packages = [ ];
|
||||
# home.stateVersion = "25.11";
|
||||
# programs.git = {
|
||||
# enable = true;
|
||||
# settings = {
|
||||
# user.name = "quinm0";
|
||||
# user.email = "jolly2633@tutamail.com";
|
||||
# init.defaultBranch = "main";
|
||||
# };
|
||||
# };
|
||||
#};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user