Compare commits

..

No commits in common. "ae54ad7e5d28fcd41c72d09a702ff625e7ec71db" and "e01daac2fc5fc309a1626bab02f2301799864580" have entirely different histories.

7 changed files with 32 additions and 36 deletions

View file

@ -1,25 +1,5 @@
{ {
"nodes": { "nodes": {
"backgrounds": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1719630871,
"narHash": "sha256-laSbApuWgBoDLJUzeJKSGiqP8wwxXXQ/XnIJKihezqk=",
"ref": "refs/heads/main",
"rev": "42d5fff03e9a8aa5ad8a1dac45be209ca12b66d5",
"revCount": 8,
"type": "git",
"url": "https://git.zynh.me/Zynh0722/backgrounds"
},
"original": {
"type": "git",
"url": "https://git.zynh.me/Zynh0722/backgrounds"
}
},
"fish_theme": { "fish_theme": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -274,7 +254,6 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"backgrounds": "backgrounds",
"fish_theme": "fish_theme", "fish_theme": "fish_theme",
"home-manager": "home-manager", "home-manager": "home-manager",
"neovim-overlay": "neovim-overlay", "neovim-overlay": "neovim-overlay",

View file

@ -15,11 +15,6 @@
url = "git+https://git.zynh.me/Zynh0722/omf-theme"; url = "git+https://git.zynh.me/Zynh0722/omf-theme";
flake = false; flake = false;
}; };
backgrounds = {
url = "git+https://git.zynh.me/Zynh0722/backgrounds";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = outputs =

View file

@ -32,6 +32,21 @@
# Set your time zone. # Set your time zone.
time.timeZone = "America/Los_Angeles"; time.timeZone = "America/Los_Angeles";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
# Enable the X11 windowing system. # Enable the X11 windowing system.
services.xserver.enable = true; services.xserver.enable = true;

View file

@ -78,10 +78,11 @@
fzf fzf
tree tree
nix-output-monitor
gparted gparted
arandr arandr
flameshot flameshot
easyeffects
# steam # steam
spotify spotify

View file

@ -24,7 +24,6 @@
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
nix-output-monitor
(writeShellScriptBin "rebuild" '' (writeShellScriptBin "rebuild" ''
nixos-rebuild switch --log-format internal-json -v |& nom --json nixos-rebuild switch --log-format internal-json -v |& nom --json
'') '')

View file

@ -32,6 +32,21 @@
# Set your time zone. # Set your time zone.
time.timeZone = "America/Los_Angeles"; time.timeZone = "America/Los_Angeles";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
# Enable the X11 windowing system. # Enable the X11 windowing system.
services.xserver.enable = true; services.xserver.enable = true;

View file

@ -36,14 +36,6 @@ in
partOf = [ "graphical-session.target" ]; partOf = [ "graphical-session.target" ];
}; };
systemd.user.services.fehbg = {
script = ''
/home/ravenshade/bg.sh
'';
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
dmenu dmenu
]; ];