feat: added coder workspace home config
parent
e9c3b32d75
commit
3439390ee8
|
@ -9,6 +9,8 @@
|
|||
home = {
|
||||
packages = [ pkgs.offline-backups ];
|
||||
stateVersion = "22.11";
|
||||
username = "rilla";
|
||||
homeDirectory = "/home/rilla";
|
||||
};
|
||||
imports = [
|
||||
outputs.homeManagerModules.common
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
{ inputs, outputs, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home = {
|
||||
username = "rilla";
|
||||
homeDirectory = "/home/rilla";
|
||||
};
|
||||
|
||||
nixpkgs = {
|
||||
overlays = [
|
||||
outputs.overlays.additions
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
users.rilla = {
|
||||
home = {
|
||||
username = "rilla";
|
||||
homeDirectory = "/home/rilla";
|
||||
packages = [ pkgs.offline-backups ];
|
||||
stateVersion = "22.11";
|
||||
};
|
||||
|
|
|
@ -3,11 +3,6 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home = {
|
||||
username = "rilla";
|
||||
homeDirectory = "/home/rilla";
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
imports = [
|
||||
|
|
Loading…
Reference in New Issue