modify structure
This commit is contained in:
parent
86f63580fc
commit
dc8d6c3db3
13 changed files with 40 additions and 42 deletions
|
|
@ -87,11 +87,11 @@
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
./system/all.nix
|
./system/all.nix
|
||||||
./system/widevine/default.nix
|
./system/widevine
|
||||||
./system/shell/fish.nix
|
./system/shell/fish.nix
|
||||||
./system/tailscale/default.nix
|
./system/tailscale
|
||||||
./system/hosts/${hostname}/default.nix
|
./system/hosts/${hostname}
|
||||||
./hardware/${hostname}.nix
|
./hardware/${hostname}
|
||||||
catppuccin.nixosModules.catppuccin
|
catppuccin.nixosModules.catppuccin
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
noctalia.nixosModules.default
|
noctalia.nixosModules.default
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,24 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
programs.ghostwriter = {
|
||||||
|
enable = true;
|
||||||
|
font = {
|
||||||
|
family = config.userOptions.fontSans.name;
|
||||||
|
pointSize = config.userOptions.fontSans.size;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.kate = {
|
||||||
|
enable = true;
|
||||||
|
editor = {
|
||||||
|
font = {
|
||||||
|
family = config.userOptions.fontMono.name;
|
||||||
|
pointSize = config.userOptions.fontMono.size;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs.plasma = {
|
programs.plasma = {
|
||||||
enable = true;
|
enable = true;
|
||||||
overrideConfig = true;
|
overrideConfig = true;
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
{ config, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
programs.ghostwriter = {
|
|
||||||
enable = true;
|
|
||||||
font = {
|
|
||||||
family = config.userOptions.fontSans.name;
|
|
||||||
pointSize = config.userOptions.fontSans.size;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.kate = {
|
|
||||||
enable = true;
|
|
||||||
editor = {
|
|
||||||
font = {
|
|
||||||
family = config.userOptions.fontMono.name;
|
|
||||||
pointSize = config.userOptions.fontMono.size;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -9,6 +9,10 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
./niri.nix
|
||||||
|
./noctalia.nix
|
||||||
|
];
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
xdg-desktop-portal
|
xdg-desktop-portal
|
||||||
brightnessctl
|
brightnessctl
|
||||||
|
|
|
||||||
|
|
@ -53,23 +53,20 @@
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
home-manager.users.sckova = {
|
home-manager.users.sckova = {
|
||||||
imports = [
|
imports = [
|
||||||
../home/all.nix
|
../home
|
||||||
../home/browsers/firefox/default.nix
|
../home/browsers/firefox
|
||||||
../home/tiling/niri/default.nix
|
../home/tiling/niri
|
||||||
../home/tiling/niri/niri.nix
|
../home/tiling/quickshell
|
||||||
../home/tiling/niri/noctalia.nix
|
../home/tiling/wallpaper
|
||||||
../home/tiling/quickshell/default.nix
|
../home/tiling/waybar
|
||||||
../home/tiling/wallpaper/bing-wallpaper.nix
|
../home/systemd
|
||||||
../home/tiling/waybar/default.nix
|
../home/terminal/btop
|
||||||
../home/systemd/default.nix
|
../home/terminal/fish
|
||||||
../home/terminal/btop/default.nix
|
../home/terminal/kitty
|
||||||
../home/terminal/fish/default.nix
|
../home/terminal/nvim
|
||||||
../home/terminal/kitty/default.nix
|
../home/kde
|
||||||
../home/terminal/nvim/default.nix
|
../home/vscode
|
||||||
../home/kde/plasma.nix
|
../home/hosts/${config.networking.hostName}
|
||||||
../home/kde/other.nix
|
|
||||||
../home/vscode/default.nix
|
|
||||||
../home/hosts/${config.networking.hostName}.nix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue