Files
soupclown/users.nix
T
qdev ef4883bb3b 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?
2026-03-12 23:26:33 -04:00

37 lines
782 B
Nix

{ 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";
# };
# };
#};
}