some minor refactor
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{pkgs, ...}: {
|
||||
imports = [
|
||||
./modules.nix
|
||||
./modules
|
||||
./git.nix
|
||||
];
|
||||
home = {
|
||||
|
||||
6
users/toothpick/modules/default.nix
Normal file
6
users/toothpick/modules/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
imports = [
|
||||
./home.nix
|
||||
./options.nix
|
||||
];
|
||||
}
|
||||
@@ -1,14 +1,4 @@
|
||||
{
|
||||
monitors = [
|
||||
{
|
||||
name = "DVI-D-1";
|
||||
width = 1920;
|
||||
height = 1080;
|
||||
refreshRate = 144;
|
||||
workspace = "1";
|
||||
primary = true;
|
||||
}
|
||||
];
|
||||
home = {
|
||||
programs = {
|
||||
alacritty = {
|
||||
18
users/toothpick/modules/options.nix
Normal file
18
users/toothpick/modules/options.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
monitors = [
|
||||
{
|
||||
name = "DVI-D-1";
|
||||
width = 1920;
|
||||
height = 1080;
|
||||
refreshRate = 144;
|
||||
workspace = "1";
|
||||
primary = true;
|
||||
}
|
||||
];
|
||||
theme = {
|
||||
background = {
|
||||
lockscreen = "wallpaper_2";
|
||||
desktop = "wallpaper_1";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user