caem
75b13ac379
With the release of the Nvidia 555 beta drivers and their improvements to the Wayland experience I've finally decided to return to NixOS with Hyprland again after 2 years of running Gentoo and Opensuse Tumbleweed on X11. So this is me committing the work done so far from the last couple of days. Future commits will be more incremental.
45 lines
1 KiB
Nix
45 lines
1 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../packages/sets/communication.nix
|
|
../../packages/sets/games.nix
|
|
./persist.nix
|
|
./packages/stylix.nix
|
|
./packages/nh.nix
|
|
./packages/zsh/zsh.nix
|
|
];
|
|
|
|
users.users.hu = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" ];
|
|
shell = pkgs.zsh;
|
|
hashedPasswordFile = "/nix/config/secrets/hu/pass";
|
|
};
|
|
|
|
# TODO: Figure out a way to run scripts with the user session as a systemd service
|
|
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
users.hu = {
|
|
home.username = "hu";
|
|
home.homeDirectory = "/home/hu";
|
|
home.stateVersion = config.system.stateVersion;
|
|
|
|
imports = [
|
|
./packages/zsh/zsh-home.nix
|
|
./packages/git.nix
|
|
# ./packages/tmux.nix
|
|
./packages/hyprland.nix
|
|
./packages/foot.nix
|
|
./packages/firefox.nix
|
|
./packages/rofi.nix
|
|
./packages/dunst.nix
|
|
./packages/nvim/neovim.nix
|
|
# ./packages/ags/ags.nix
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|