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/widevine/default.nix
|
||||
./system/widevine
|
||||
./system/shell/fish.nix
|
||||
./system/tailscale/default.nix
|
||||
./system/hosts/${hostname}/default.nix
|
||||
./hardware/${hostname}.nix
|
||||
./system/tailscale
|
||||
./system/hosts/${hostname}
|
||||
./hardware/${hostname}
|
||||
catppuccin.nixosModules.catppuccin
|
||||
home-manager.nixosModules.home-manager
|
||||
noctalia.nixosModules.default
|
||||
|
|
|
|||
|
|
@ -1,6 +1,24 @@
|
|||
{ 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 = {
|
||||
enable = 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
|
||||
{
|
||||
imports = [
|
||||
./niri.nix
|
||||
./noctalia.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
xdg-desktop-portal
|
||||
brightnessctl
|
||||
|
|
|
|||
|
|
@ -53,23 +53,20 @@
|
|||
home-manager.useUserPackages = true;
|
||||
home-manager.users.sckova = {
|
||||
imports = [
|
||||
../home/all.nix
|
||||
../home/browsers/firefox/default.nix
|
||||
../home/tiling/niri/default.nix
|
||||
../home/tiling/niri/niri.nix
|
||||
../home/tiling/niri/noctalia.nix
|
||||
../home/tiling/quickshell/default.nix
|
||||
../home/tiling/wallpaper/bing-wallpaper.nix
|
||||
../home/tiling/waybar/default.nix
|
||||
../home/systemd/default.nix
|
||||
../home/terminal/btop/default.nix
|
||||
../home/terminal/fish/default.nix
|
||||
../home/terminal/kitty/default.nix
|
||||
../home/terminal/nvim/default.nix
|
||||
../home/kde/plasma.nix
|
||||
../home/kde/other.nix
|
||||
../home/vscode/default.nix
|
||||
../home/hosts/${config.networking.hostName}.nix
|
||||
../home
|
||||
../home/browsers/firefox
|
||||
../home/tiling/niri
|
||||
../home/tiling/quickshell
|
||||
../home/tiling/wallpaper
|
||||
../home/tiling/waybar
|
||||
../home/systemd
|
||||
../home/terminal/btop
|
||||
../home/terminal/fish
|
||||
../home/terminal/kitty
|
||||
../home/terminal/nvim
|
||||
../home/kde
|
||||
../home/vscode
|
||||
../home/hosts/${config.networking.hostName}
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue