Compare commits
No commits in common. "d1e5b4ed7bf0f052707c63b2a0da663d614dc61b" and "fc96d1d0ae2247939eaebd12cdeaea702cd54ea7" have entirely different histories.
d1e5b4ed7b
...
fc96d1d0ae
10
flake.nix
10
flake.nix
|
@ -61,21 +61,13 @@
|
||||||
formatter."${system}" = pkgs.nixfmt-rfc-style;
|
formatter."${system}" = pkgs.nixfmt-rfc-style;
|
||||||
|
|
||||||
homeManagerModules = {
|
homeManagerModules = {
|
||||||
common = import ./modules/home-manager/common.nix;
|
emacs = import ./modules/home-manager/programs/emacs;
|
||||||
default = import ./modules/home-manager;
|
|
||||||
emacsConfig = import ./modules/home-manager/programs/emacs;
|
|
||||||
hyprlandConfig = import ./modules/home-manager/programs/hyprland;
|
hyprlandConfig = import ./modules/home-manager/programs/hyprland;
|
||||||
neovim = import ./modules/home-manager/programs/neovim;
|
neovim = import ./modules/home-manager/programs/neovim;
|
||||||
theming = import ./modules/home-manager/theming.nix;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosModules = {
|
nixosModules = {
|
||||||
common = import ./modules/nixos/common.nix;
|
|
||||||
default = import ./modules/nixos;
|
default = import ./modules/nixos;
|
||||||
desktop = import ./modules/nixos/desktop.nix;
|
|
||||||
hardware = import ./modules/nixos/hardware.nix;
|
|
||||||
sound = import ./modules/nixos/sound.nix;
|
|
||||||
system = import ./modules/nixos/system.nix;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
# Let Home Manager install and manage itself.
|
|
||||||
programs.home-manager.enable = true;
|
|
||||||
|
|
||||||
# Allow unfree packages
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
NIXOS_OZONE_WL = "1";
|
NIXOS_OZONE_WL = "1";
|
||||||
QT_QPA_PLATFORM = "wayland";
|
QT_QPA_PLATFORM = "wayland";
|
||||||
|
|
|
@ -5,6 +5,12 @@
|
||||||
./programs
|
./programs
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Let Home Manager install and manage itself.
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
|
# Allow unfree packages
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
# The home.packages option allows you to install Nix packages into your
|
# The home.packages option allows you to install Nix packages into your
|
||||||
# environment.
|
# environment.
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
Loading…
Reference in a new issue