:3
This commit is contained in:
parent
60405a8504
commit
1c5651bb83
2 changed files with 74 additions and 65 deletions
38
freecorn.nix
Normal file
38
freecorn.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.freecorn = {
|
||||
description = "FreeCorn";
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"video"
|
||||
"scanner"
|
||||
"lp"
|
||||
"plugdev"
|
||||
];
|
||||
};
|
||||
|
||||
# Define home manager programs and configs
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
users.freecorn = { config, pkgs, ... }: {
|
||||
# Install user programs
|
||||
home.packages = (with pkgs; [
|
||||
rustdesk-flutter anydesk vlc
|
||||
]);
|
||||
|
||||
# OBS with plugins
|
||||
programs.obs-studio = {
|
||||
enable = true;
|
||||
plugins = with pkgs.obs-studio-plugins; [
|
||||
advanced-scene-switcher obs-multi-rtmp
|
||||
];
|
||||
};
|
||||
|
||||
# Don't change this
|
||||
home.stateVersion = "24.05";
|
||||
};
|
||||
};
|
||||
}
|
Reference in a new issue