mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-07-02 14:36:00 +00:00
~
Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
parent
f2e479415c
commit
146a2de0ec
8 changed files with 40 additions and 6 deletions
|
@ -1,12 +1,14 @@
|
|||
{ pkgs, lib, config, ... }: let
|
||||
cfg = config.r5e.system;
|
||||
in with lib; {
|
||||
imports = [ ./home.nix ];
|
||||
|
||||
options.r5e.system = {
|
||||
graphics = {
|
||||
display.x11 = {
|
||||
enable = mkEnableOption "X11";
|
||||
windowManagers = mkOption {
|
||||
type = types.listOf types.str;
|
||||
type = types.listOf types.str;
|
||||
default = [ "twm" ];
|
||||
};
|
||||
displayManager = {
|
||||
|
|
19
nixos/modules/system/home.nix
Normal file
19
nixos/modules/system/home.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
# TODO unimplemented
|
||||
{ pkgs, config, lib, ... }: let
|
||||
cfg = config.r5e.home;
|
||||
in with lib; {
|
||||
options.r5e.home = mkOption {
|
||||
type = types.attrsOf {
|
||||
wallpaper = mkOption {
|
||||
type = types.str;
|
||||
default = /home/rae/.dotfiles/assets/wallpapers/current;
|
||||
};
|
||||
};
|
||||
default = {};
|
||||
};
|
||||
|
||||
config = {
|
||||
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue