refactor(homes/rafiq): separate cli and desktop programs
This commit is contained in:
parent
52ec49fab0
commit
5f91ad83aa
6 changed files with 17 additions and 11 deletions
|
@ -1,8 +1,8 @@
|
||||||
{ config, lib, pkgs, osConfig, ... }:
|
{ config, lib, pkgs, osConfig, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./programs/git.nix
|
./cli/git.nix
|
||||||
./programs/zsh.nix
|
./cli/zsh.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
|
|
@ -2,18 +2,10 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./programs/hyprland.nix
|
|
||||||
./cli.nix
|
./cli.nix
|
||||||
|
./desktop.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
kitty
|
|
||||||
];
|
|
||||||
home.sessionVariables = {
|
|
||||||
TERMINAL = "kitty";
|
|
||||||
BROWSER = ", firefox";
|
|
||||||
};
|
|
||||||
|
|
||||||
home.persistence."/persist/home/rafiq" = {
|
home.persistence."/persist/home/rafiq" = {
|
||||||
directories = [
|
directories = [
|
||||||
".ssh"
|
".ssh"
|
||||||
|
|
14
homes/x86_64-linux/rafiq/desktop.nix
Normal file
14
homes/x86_64-linux/rafiq/desktop.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{pkgs,...}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./desktop/hyprland.nix
|
||||||
|
];
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
kitty
|
||||||
|
];
|
||||||
|
home.sessionVariables = {
|
||||||
|
TERMINAL = "kitty";
|
||||||
|
BROWSER = "firefox";
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue